UNPKG

@prefecthq/prefect-design

Version:

A collection of low-level Vue components.

6 lines (4 loc) 209 B
import { isDate } from 'date-fns' export function isRecord(item: unknown): item is Record<PropertyKey, unknown> { return item !== null && typeof item === 'object' && !Array.isArray(item) && !isDate(item) }