(unsafe: boolean)
| 27 | ] |
| 28 | |
| 29 | export const generateNotice = (unsafe: boolean) => [ |
| 30 | `// ============================== NOTICE ==============================`, |
| 31 | `// This library was automatically generated with stackpacker.`, |
| 32 | `// Be very careful about modifying it, as doing so incorrectly could`, |
| 33 | `// result in corrupted reads/writes.`, |
| 34 | ...(unsafe ? UnsafeWarning : []), |
| 35 | `// ====================================================================` |
| 36 | ]; |
no outgoing calls
no test coverage detected