UNPKG

@maplibre/maplibre-gl-style-spec

Version:
4 lines (3 loc) 157 B
export function isObjectLiteral(anything: unknown): anything is Record<string, unknown> { return Boolean(anything) && anything.constructor === Object; }