multi-typeof
v1.0.0
Published
Check something against an array of types.
Downloads
793
Maintainers
Readme
multi-typeof
Check something against an array of types.
Install
$ npm install --save multi-typeof
Example
var multiTypeof = require('multi-typeof');
if (!multiTypeof(65, ['string', 'array'])) {
throw new TypeError('Expected a string or an array');
}
API
multiTypeof(input, types)
input
Required
Type: Any type
Value to test.
types
Required
Type: array
Types to check against.
License
MIT © Andreas Gillström