(code)
| 149 | * @returns {code is Definitions} true for a plain object or array |
| 150 | */ |
| 151 | const isObjectDefinition = (code) => |
| 152 | Boolean(code) && |
| 153 | typeof code === "object" && |
| 154 | !(code instanceof RuntimeValue) && |
| 155 | !(code instanceof RegExp); |
| 156 | |
| 157 | /** @typedef {Set<string> | null} ObjKeys */ |
| 158 | /** @typedef {boolean | undefined | null} AsiSafe */ |
no outgoing calls
no test coverage detected