istool
v0.0.2
Published
Functional helper library with Higher Order Functions.
Readme
istool.js - higher-order functions
npm install istoolusage
var is = require('istool')functions
equal is.eq
var arr = ['daewon', 'dun'].filter(is.eq('daewon'));
// ['daewon']not equal is.ne
var arr = ['daewon', 'dun'].filter(is.ne('daewon'));
// ['dun']