manyfest 1.0.20 → 1.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.browserslistrc CHANGED
@@ -1 +1 @@
1
- > 0.01%
1
+ since 2018
@@ -5,7 +5,7 @@
5
5
 
6
6
  "LibraryOutputFolder": "./dist/",
7
7
 
8
- "LibraryUniminifiedFileName": "manyfest.compatible.js",
8
+ "LibraryUniminifiedFileName": "manyfest.js",
9
9
 
10
- "LibraryMinifiedFileName": "manyfest.compatible.min.js"
10
+ "LibraryMinifiedFileName": "manyfest.min.js"
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manyfest",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "JSON Object Manifest for Data Description and Parsing",
5
5
  "main": "source/Manyfest.js",
6
6
  "scripts": {
@@ -28,9 +28,6 @@ class ManyfestObjectAddressResolverCheckAddressExists
28
28
  // Wire in logging
29
29
  this.logInfo = (typeof(pInfoLog) == 'function') ? pInfoLog : libSimpleLog;
30
30
  this.logError = (typeof(pErrorLog) == 'function') ? pErrorLog : libSimpleLog;
31
-
32
- this.elucidatorSolver = false;
33
- this.elucidatorSolverState = {};
34
31
  }
35
32
 
36
33
  // Check if an address exists.
@@ -33,9 +33,6 @@ class ManyfestObjectAddressResolverDeleteValue
33
33
  this.logInfo = (typeof(pInfoLog) == 'function') ? pInfoLog : libSimpleLog;
34
34
  this.logError = (typeof(pErrorLog) == 'function') ? pErrorLog : libSimpleLog;
35
35
 
36
- this.elucidatorSolver = false;
37
- this.elucidatorSolverState = {};
38
-
39
36
  this.cleanWrapCharacters = fCleanWrapCharacters;
40
37
  this.precedent = new libPrecedent();
41
38
 
@@ -90,7 +87,7 @@ class ManyfestObjectAddressResolverDeleteValue
90
87
  // TODO: Consider adding a "don't replace" option for precedent
91
88
  let tmpAddress = pAddress;
92
89
 
93
- // This allows the magic filtration with elucidator configuration
90
+ // This allows the magic filtration with solver configuration
94
91
  // TODO: We could pass more state in (e.g. parent address, object, etc.)
95
92
  // TODO: Discuss this metaprogramming AT LENGTH
96
93
  let tmpFilterState = (
@@ -33,9 +33,6 @@ class ManyfestObjectAddressResolverGetValue
33
33
  this.logInfo = (typeof(pInfoLog) == 'function') ? pInfoLog : libSimpleLog;
34
34
  this.logError = (typeof(pErrorLog) == 'function') ? pErrorLog : libSimpleLog;
35
35
 
36
- this.elucidatorSolver = false;
37
- this.elucidatorSolverState = {};
38
-
39
36
  this.cleanWrapCharacters = fCleanWrapCharacters;
40
37
 
41
38
  this.precedent = new libPrecedent();
@@ -90,7 +87,7 @@ class ManyfestObjectAddressResolverGetValue
90
87
  // TODO: Consider adding a "don't replace" option for precedent
91
88
  let tmpAddress = pAddress;
92
89
 
93
- // This allows the magic filtration with elucidator configuration
90
+ // This allows the magic filtration with configuration
94
91
  // TODO: We could pass more state in (e.g. parent address, object, etc.)
95
92
  // TODO: Discuss this metaprogramming AT LENGTH
96
93
  let tmpFilterState = (
@@ -31,9 +31,6 @@ class ManyfestObjectAddressSetValue
31
31
  this.logInfo = (typeof(pInfoLog) == 'function') ? pInfoLog : libSimpleLog;
32
32
  this.logError = (typeof(pErrorLog) == 'function') ? pErrorLog : libSimpleLog;
33
33
 
34
- this.elucidatorSolver = false;
35
- this.elucidatorSolverState = {};
36
-
37
34
  this.cleanWrapCharacters = fCleanWrapCharacters;
38
35
  }
39
36
 
@@ -88,21 +88,6 @@ class Manyfest
88
88
  this.elementDescriptors = {};
89
89
  this.dataSolvers = undefined;
90
90
  this.dataSolverState = {};
91
-
92
- this.libElucidator = undefined;
93
- }
94
-
95
- setElucidatorSolvers(pElucidatorSolver, pElucidatorSolverState)
96
- {
97
- this.objectAddressCheckAddressExists.elucidatorSolver = pElucidatorSolver;
98
- this.objectAddressGetValue.elucidatorSolver = pElucidatorSolver;
99
- this.objectAddressSetValue.elucidatorSolver = pElucidatorSolver;
100
- this.objectAddressDeleteValue.elucidatorSolver = pElucidatorSolver;
101
-
102
- this.objectAddressCheckAddressExists.elucidatorSolverState = pElucidatorSolverState;
103
- this.objectAddressGetValue.elucidatorSolverState = pElucidatorSolverState;
104
- this.objectAddressSetValue.elucidatorSolverState = pElucidatorSolverState;
105
- this.objectAddressDeleteValue.elucidatorSolverState = pElucidatorSolverState;
106
91
  }
107
92
 
108
93
  clone()