Update to JSONata 1.8

This commit is contained in:
Nick O'Leary
2020-02-05 14:44:39 +00:00
parent 5897045f24
commit 3d9945b60c
4 changed files with 7 additions and 2 deletions

View File

@@ -262,5 +262,9 @@
"$distinct": {
"args": "array",
"desc": "Returns an array with duplicate values removed from `array`"
},
"$type": {
"args": "value",
"desc": "Returns the type of `value` as a string. If `value` is undefined, this will return `undefined`"
}
}

View File

@@ -171,6 +171,7 @@
'$sum':{ args:[ 'array' ]},
'$toMillis':{args:['timestamp']}, // <-------------
'$trim':{ args:[ 'str' ]},
'$type':{ args:['value']},
'$uppercase':{ args:[ 'str' ]},
'$zip':{ args:[ 'array1' ]}
}