@jeffmcmahan/type
v0.0.2
Published
Simple cross-engine type checker
Downloads
4
Readme
Type
Example
import {type} from 'jeffmcmahan/type'
const foo = (id, name, data) => {
type (id) (Number)
type (name) (String)
type (data) (Object, null)
// ...
}