manyfest 1.0.27 → 1.0.28
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/dist/manyfest.compatible.js +5 -1
- package/dist/manyfest.compatible.min.js +1 -1
- package/dist/manyfest.compatible.min.js.map +1 -1
- package/dist/manyfest.js +5 -1
- package/dist/manyfest.min.js +1 -1
- package/dist/manyfest.min.js.map +1 -1
- package/package.json +1 -1
- package/source/Manyfest-ObjectAddress-GetValue.js +8 -1
package/package.json
CHANGED
|
@@ -218,7 +218,14 @@ class ManyfestObjectAddressResolverGetValue
|
|
|
218
218
|
else
|
|
219
219
|
{
|
|
220
220
|
// Now is the point in recursion to return the value in the address
|
|
221
|
-
|
|
221
|
+
if (typeof(pObject[pAddress]) != null)
|
|
222
|
+
{
|
|
223
|
+
return pObject[pAddress];
|
|
224
|
+
}
|
|
225
|
+
else
|
|
226
|
+
{
|
|
227
|
+
return undefined;
|
|
228
|
+
}
|
|
222
229
|
}
|
|
223
230
|
}
|
|
224
231
|
else
|