cc-typejs
v1.0.4
Published
Javascript data type check true or false.
Downloads
2
Maintainers
Readme
type
Javascript data type check true or false.
Usage
import type from 'cc-typejs'
type.isNull(null) // true
type.isUndefined(undefined) // true
type.isObject({}) // true
type.isArray([]) // true
type.isString('') // true
type.isNumber(1) // true
type.isBoolean(true) // true
type.isFunction(() => {}) // true
type.isRegExp(/a/) // true
type.isSymbol(Symbol()) // true
import { isNull } from 'cc-typejs'
isNull(null) // true