Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/stephband/Fn into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
stephband committed Jan 4, 2017
2 parents cba9c6a + b384be8 commit 5a1612d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions js/fn.js
Expand Up @@ -1384,6 +1384,10 @@


// Booleans
or: curry(function or(a, b) { return a || b; }),

xor: curry(function or(a, b) { return (a || b) && (!!a !== !!b); }),

not: function not(object) { return !object; },


Expand Down

0 comments on commit 5a1612d

Please sign in to comment.