UNPKG

datum-focus

Version:

Data shape, model, metadata, JSON, JSON Schema, GraphQL, MongoDB query and aggregations, iterator generators

6 lines (4 loc) 162 B
export const BOOLEAN = "boolean"; export type BooleanType = typeof BOOLEAN; export const isBoolean = (val: unknown): val is boolean => typeof val === BOOLEAN;