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

Function isAssetItem

packages/utils/src/asset.ts:11–13  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

9export type { AssetItem, Asset, AssetList, AssetBundle, IPublicTypeAssetsJson } from '@alilc/lowcode-types';
10
11export function isAssetItem(obj: any): obj is AssetItem {
12 return obj && obj.type;
13}
14
15export function isAssetBundle(obj: any): obj is AssetBundle {
16 return obj && obj.type === AssetType.Bundle;

Callers 2

parseAssetFunction · 0.85
parseAssetListFunction · 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…