(data: any)
| 358 | ) as any; |
| 359 | |
| 360 | export function isObject(data: any): data is Record<PropertyKey, unknown> { |
| 361 | return typeof data === "object" && data !== null && !Array.isArray(data); |
| 362 | } |
| 363 | |
| 364 | export const allowsEval: { value: boolean } = /* @__PURE__*/ cached(() => { |
| 365 | // Skip the probe under `jitless`: strict CSPs report the caught `new Function` |
no outgoing calls
no test coverage detected