1.0.4 • Published 3 years ago

cc-typejs v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

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