2.0.0 • Published 11 years ago

to-bool-function v2.0.0

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

Build Status

to-bool-function

Convert things to functions for use in some/filter/every etc.

Installation

$ component install ForbesLindesay/to-bool-function

or

$ npm install to-bool-function

API

var fun = require('to-bool-function');

fun('isAdmin')({isAdmin: true})
// => true

fun('isAdmin', false)({isAdmin: true})
// => false

fun('name', 'Forbes')({name: 'Forbes'})
// => true

fun(/^\S+@\S+\.\S+$/)('forbes@component.io')
// => true

fun(/^\S+@\S+\.\S+$/)('forbescomponent.io')
// => false

fun('contact.email', /^\S+@\S+\.\S+$/)({contact: {email: 'forbes@component.io'}})
// => true

fun({contact: {realName: /\w+/,    email: /^\S+@\S+\.\S+$/}})
   ({contact: {realName: 'Forbes', email: 'forbes@component.io'}})
// => true

License

MIT

2.0.0

11 years ago

1.0.1

11 years ago

1.0.0

11 years ago