(message: string)
| 143 | export const structuredClone = GLOBAL.structuredClone as <T>(value: T) => T; |
| 144 | |
| 145 | export const errorNew = (message: string): never => { |
| 146 | throw new Error(message); |
| 147 | }; |
| 148 | |
| 149 | export const tryReturn = <Return>( |
| 150 | tryF: () => Return, |
no outgoing calls
no test coverage detected
searching dependent graphs…