UNPKG

schema-finder

Version:

A simple React component for viewing and exploring a JSONSchema

6 lines (5 loc) 207 B
/** * Checks if prop is a non-empty, non-null object */ export const isObj = (prop?: unknown): prop is Record<string, unknown> => prop !== null && typeof prop === "object" && !!Object.keys(prop).length;