bruce-models 1.9.4 → 1.9.5
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/bruce-models.umd.js
CHANGED
|
@@ -2041,11 +2041,11 @@
|
|
|
2041
2041
|
if (path.startsWith("${") && path.endsWith("}")) {
|
|
2042
2042
|
path = path.replace("${", "");
|
|
2043
2043
|
path = path.replace("}", "");
|
|
2044
|
-
// Split by dots.
|
|
2045
|
-
paths.push(exports.PathUtils.ParseLegacy(path));
|
|
2046
|
-
// Take string as is.
|
|
2047
|
-
paths.push([path]);
|
|
2048
2044
|
}
|
|
2045
|
+
// Split by dots.
|
|
2046
|
+
paths.push(exports.PathUtils.ParseLegacy(path));
|
|
2047
|
+
// Take string as is.
|
|
2048
|
+
paths.push([path]);
|
|
2049
2049
|
// Split by backslashes.
|
|
2050
2050
|
paths.push(exports.PathUtils.Parse(path));
|
|
2051
2051
|
return paths;
|