@domql/utils 2.3.152 → 2.3.153

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.
@@ -31,6 +31,8 @@ const stringIncludesAny = (str, characters) => {
31
31
  return false;
32
32
  };
33
33
  const replaceLiteralsWithObjectFields = (str, state) => {
34
+ if (!str.includes("{{"))
35
+ return str;
34
36
  return str.replace(/\{\{\s*((?:\.\.\/)+)?([^}\s]+)\s*\}\}/g, (_, parentPath, variable) => {
35
37
  if (parentPath) {
36
38
  const parentLevels = parentPath.match(/\.\.\//g).length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/utils",
3
- "version": "2.3.152",
3
+ "version": "2.3.153",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "index.js",
@@ -23,7 +23,7 @@
23
23
  "@domql/key": "latest",
24
24
  "@domql/tags": "latest"
25
25
  },
26
- "gitHead": "9424c9efe8b2b9e4b39bf7dfac3caf1f964ddb9a",
26
+ "gitHead": "91cb404c3b97ab43b164ecb85a572d37e0976d97",
27
27
  "devDependencies": {
28
28
  "@babel/core": "^7.12.0"
29
29
  }
package/string.js CHANGED
@@ -10,6 +10,7 @@ export const stringIncludesAny = (str, characters) => {
10
10
  }
11
11
 
12
12
  export const replaceLiteralsWithObjectFields = (str, state) => {
13
+ if (!str.includes('{{')) return str
13
14
  return str.replace(/\{\{\s*((?:\.\.\/)+)?([^}\s]+)\s*\}\}/g, (_, parentPath, variable) => {
14
15
  if (parentPath) {
15
16
  const parentLevels = parentPath.match(/\.\.\//g).length