UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

8 lines (6 loc) 267 B
import {isContainerType} from "../types/type-containers" import {isPrimitiveType} from "../types/type-primitives" import {Type} from "../types/types" export function isType(value: unknown): value is Type { return isPrimitiveType(value) || isContainerType(value) }