isPrimitive
Basic usage
Checks if the given value is primitive.
Primitive Types: number , string , boolean , symbol, bigint, undefined, null
import { isPrimitive } from 'radash'
isPrimitive(22) // => trueisPrimitive('hello') // => trueisPrimitive(['hello']) // => false