UNPKG

142 BJavaScriptView Raw
1const isPrimitive = (x) => {
2 const t = typeof x;
3 return t === "string" || t === "number" || t === "boolean";
4};
5export {
6 isPrimitive
7};