Skip to content

Commit 70dbc40

Browse files
committed
allow array parameters to all the functions where it makes sense
1 parent 3ab3dec commit 70dbc40

File tree

6 files changed

+853
-406
lines changed

6 files changed

+853
-406
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Given:
4646
Visit the [Playground](https://opensource.adobe.com/json-formula/dist/index.html)
4747

4848
# Documentation
49-
Specification / Reference: [HTML](https://opensource.adobe.com/json-formula/doc/output/json-formula-specification-1.1.0.html) / [PDF](https://opensource.adobe.com/json-formula/doc/output/json-formula-specification-1.1.0.pdf)
49+
Specification / Reference: [HTML](https://opensource.adobe.com/json-formula/doc/output/json-formula-specification-1.1.2.html) / [PDF](https://opensource.adobe.com/json-formula/doc/output/json-formula-specification-1.1.2.pdf)
5050

5151
[JavaScript API](./doc/output/JSDOCS.md)
5252

doc/spec.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ In all cases except ordering comparison, if the coercion is not possible, a `Typ
9191
eval([1,2,3] ~ 4, {}) -> [1,2,3,4]
9292
eval(123 < "124", {}) -> true
9393
eval("23" > 111, {}) -> false
94-
eval(abs("-2"), {}) -> 2
94+
eval(avg(["2", "3", "4"]), {}) -> 3
9595
eval(1 == "1", {}) -> false
9696
----
9797

0 commit comments

Comments
 (0)