We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51bbff5 commit e5ff00cCopy full SHA for e5ff00c
defaultMethods.js
@@ -505,7 +505,7 @@ Object.keys(defaultMethods).forEach((item) => {
505
})
506
// @ts-ignore Allow custom attribute
507
defaultMethods.var.deterministic = (data, buildState) => {
508
- return buildState.insideIterator && !String(data).includes('../')
+ return buildState.insideIterator && !String(data).includes('../../')
509
}
510
Object.assign(defaultMethods.var, { traverse: false })
511
Object.assign(defaultMethods.missing, {
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "json-logic-engine",
3
- "version": "1.3.8",
+ "version": "1.3.9",
4
"description": "Construct complex rules with JSON & process them.",
5
"main": "./dist/cjs/index.js",
6
"module": "./dist/esm/index.js",
0 commit comments