You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
define the behavior for handling empty arrays and non-array input in functions (#21) (d496f54)
do not throw in gt, gte, lt, lte, and do not throw on empty arrays (#23) (27e5d24)
handle ordering mixed types in function sort (46a9d61)
implement support for operator precedence (#17) (0d39aeb)
BREAKING CHANGES
The operators option changes from an object like { aboutEq: '~=', ... } into an array with custom operators, having a name and precedence, like [{ name: 'aboutEq', op: '~=', at: '==', vararg: false, leftAssociative: true }, ...].