1.0.0 • Published 9 years ago

type-assertion v1.0.0

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

type-assertion

NPM version License Build status

Assert the type of a value.

Installation

npm install type-assertion

Usage

var assert = require('type-assertion')

assert({}, 'object')
assert([], 'object')  //=> TypeError: expected object
assert('ok', 'value')
assert('', 'value')   //=> TypeError: expected value

API

assert(value, expected)

Assert that value has the type of expected (aliased to assert.type).

Why?

To provide a simple way to assert types with a small footprint. Node.js' assert module is nice, but it's a bit too big when it comes to using it on the front-end.

License

MIT