type-assertion
v1.0.0
Published
Assert the type of a value.
Maintainers
Readme
type-assertion
Assert the type of a value.
Installation
npm install type-assertionUsage
var assert = require('type-assertion')
assert({}, 'object')
assert([], 'object') //=> TypeError: expected object
assert('ok', 'value')
assert('', 'value') //=> TypeError: expected valueAPI
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.
