MCPcopy Index your code
hub / github.com/alibaba/lowcode-engine / isJsObject

Function isJsObject

packages/utils/src/schema.ts:6–10  ·  view source on GitHub ↗
(props: any)

Source from the content-addressed store, hash-verified

4import { isPlainObject } from './is-plain-object';
5
6function isJsObject(props: any) {
7 if (typeof props === 'object' && props !== null) {
8 return props.type && props.source && props.compiled;
9 }
10}
11function isActionRef(props: any): boolean {
12 return props.type && props.type === 'actionRef';
13}

Callers 1

compatibleLegaoSchemaFunction · 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…