@ronin/compiler 0.11.0-leo-ron-1083-experimental-227 → 0.11.0-leo-ron-1083-experimental-228
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/index.js +0 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -133,7 +133,6 @@ var getProperty = (obj, path) => {
|
|
133
133
|
};
|
134
134
|
var setProperty = (obj, path, value) => {
|
135
135
|
if (!obj) return setProperty({}, path, value);
|
136
|
-
if (!path || value === void 0) return obj;
|
137
136
|
const segments = path.split(/[.[\]]/g).filter((x) => !!x.trim());
|
138
137
|
const _set = (node) => {
|
139
138
|
if (segments.length > 1) {
|
package/package.json
CHANGED