MCPcopy Index your code
hub / github.com/R-js/libRmath.js / JSObject

Interface JSObject

scripts/nodeWalker.ts:4–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2type ScalarValue = 'bigint' | 'string' | 'number' | 'boolean' | null | undefined;
3type ScalarValueArray = ScalarValue[];
4interface JSObject {
5 [key: string]: GeneralValue;
6}
7type GeneralValue = ScalarValue | ScalarValueArray | JSObject | JSObject[];
8
9function isScalar(u: any): u is ScalarValue {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected