MCPcopy Create free account
hub / github.com/eclipsesource/jsonforms / isScopable

Function isScopable

packages/core/src/util/uischema.ts:125–126  ·  view source on GitHub ↗
(obj: unknown)

Source from the content-addressed store, hash-verified

123 (uischema as Layout).elements !== undefined;
124
125export const isScopable = (obj: unknown): obj is Scopable =>
126 !!obj && typeof obj === 'object';
127
128export const isScoped = (obj: unknown): obj is Scoped =>
129 isScopable(obj) && typeof obj.scope === 'string';

Callers 1

isScopedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…