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