Validates if a value is a boolean primitive.
npm install validate.io-boolean-primitiveBoolean Primitive
===
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Dependencies][dependencies-image]][dependencies-url]
> Validates if a value is a boolean primitive.
`` bash`
$ npm install validate.io-boolean-primitive
For use in the browser, use browserify.
` javascript`
var isBoolean = require( 'validate.io-boolean-primitive' );
#### isBoolean( value )
Validates if a value is a boolean primitive.
` javascript
var value = false;
var bool = isBoolean( value );
// returns true
`
` javascript
var isBoolean = require( 'validate.io-boolean-primitive' );
console.log( isBoolean( false ) );
// returns true
console.log( isBoolean( true ) );
// returns true
console.log( isBoolean( new Boolean( true ) ) );
// returns false
console.log( isBoolean( 5 ) );
// returns false
`
To run the example code from the top-level application directory,
` bash`
$ node ./examples/index.js
Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:
` bash`
$ make test
All new feature development should have corresponding unit tests to validate correct functionality.
This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
` bash`
$ make test-cov
Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,
` bash``
$ make view-cov
---
Copyright © 2015. Athan Reines.
[npm-image]: http://img.shields.io/npm/v/validate.io-boolean-primitive.svg
[npm-url]: https://npmjs.org/package/validate.io-boolean-primitive
[travis-image]: http://img.shields.io/travis/validate-io/boolean-primitive/master.svg
[travis-url]: https://travis-ci.org/validate-io/boolean-primitive
[coveralls-image]: https://img.shields.io/coveralls/validate-io/boolean-primitive/master.svg
[coveralls-url]: https://coveralls.io/r/validate-io/boolean-primitive?branch=master
[dependencies-image]: http://img.shields.io/david/validate-io/boolean-primitive.svg
[dependencies-url]: https://david-dm.org/validate-io/boolean-primitive
[dev-dependencies-image]: http://img.shields.io/david/dev/validate-io/boolean-primitive.svg
[dev-dependencies-url]: https://david-dm.org/dev/validate-io/boolean-primitive
[github-issues-image]: http://img.shields.io/github/issues/validate-io/boolean-primitive.svg
[github-issues-url]: https://github.com/validate-io/boolean-primitive/issues