UNPKG

rx-store-core

Version:

A Rxjs and Immutable based Type-safe state management tool

6 lines (4 loc) 173 B
import { isObject } from "./isObject"; export const isPrimitive = (val: unknown): val is null | boolean | string | number | undefined => { return !isObject(val); };