Comparing version 1.0.12 to 1.0.13
@@ -48,3 +48,3 @@ var __defProp = Object.defineProperty; | ||
var setProperty = (object, path, value) => { | ||
const segments = path.split(/(?<!\\)[[.](?!\\)/g).filter((x) => !!x.trim()).map((x) => x.replaceAll("\\.", ".")); | ||
const segments = path.replace(/\\\./g, "\u200B").split(/[[.]/g).map((s) => s.replace(/\u200B/g, ".")).filter((x) => !!x.trim()).map((x) => x.replaceAll("\\.", ".")); | ||
const set = (node) => { | ||
@@ -51,0 +51,0 @@ if (segments.length > 1) { |
{ | ||
"version": "1.0.12", | ||
"version": "1.0.13", | ||
"name": "ronin", | ||
@@ -4,0 +4,0 @@ "scripts": { |
28469