UNPKG

@dpkit/core

Version:

Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames

6 lines (4 loc) 191 B
export type Descriptor = Record<string, unknown> export function isDescriptor(value: unknown): value is Descriptor { return !!value && typeof value === "object" && !Array.isArray(value) }