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 +1 -1
- package/gulpfile-config.json +2 -2
- package/package.json +1 -1
- package/source/Manyfest-ObjectAddress-CheckAddressExists.js +0 -3
- package/source/Manyfest-ObjectAddress-DeleteValue.js +1 -4
- package/source/Manyfest-ObjectAddress-GetValue.js +1 -4
- package/source/Manyfest-ObjectAddress-SetValue.js +0 -3
- package/source/Manyfest.js +0 -15
package/.browserslistrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
since 2018
|
package/gulpfile-config.json
CHANGED
package/package.json
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
package/source/Manyfest.js
CHANGED
|
@@ -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()
|