Checks if the given value is primitive
Checks if the given value is primitive.
Primitive Types: number , string , boolean , symbol, bigint, undefined, null
import * as _ from 'radashi' _.isPrimitive(22) // => true_.isPrimitive('hello') // => true_.isPrimitive(['hello']) // => false