@blivesta/util-types
v0.2.0
Published
Just a small JavaScript utilities
Downloads
4
Readme
@blivesta/util-types
Install
yarn add @blivesta/util-types
Usage
import { isArr, isObj } from '@blivesta/util-types'
const arr = ['foo']
const obj = {
foo: 'bar'
}
isArr(arr) // true
isArr(obj) // false
isObj(arr) // false
isObj(obj) // true
License
Released under the MIT license.