This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
Release v0.2.1
Changes
- Introducing excel-like coercions for some functions
- excel-number function will try to coerce any to number. Booleans coerced too (true -> 1, false -> 0)
- excel-str function will try to coerce any to string. Booleans coerced too (true -> "TRUE", false -> "FALSE")
Now it is possible to pass vectors of strings to some functions (AVERAGE, SUM, MIN, etc.)
AVERAGE("1", "2", 4, TRUE, FALSE) => 2