1.0.1 • Published 6 years ago

unl v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Functional Branch

unl exports only one function that takes a test, a left, and a right function and return a combined one that will run left if test returns falsy and right otherwise

Example

const unless = require('unl');

const isOdd = x => x % 2;

const left = x => `${x} is not odd`;
const right = x => `${x} is not even`;

const fn = unless(isOdd, left, right);

console.log(fn(2)); // returns 2 is not odd
console.log(fn(1)); // returns 1 is not even
1.0.1

6 years ago

1.0.0

6 years ago

0.0.0

6 years ago