initial update

This commit is contained in:
jackbeeby
2025-05-15 13:32:55 +10:00
commit 7b07a49fbe
4412 changed files with 909535 additions and 0 deletions

19
node_modules/ts-invariant/README.md generated vendored Normal file
View File

@@ -0,0 +1,19 @@
# ts-invariant
[TypeScript](https://www.typescriptlang.org) implementation of
[`invariant(condition, message)`](https://www.npmjs.com/package/invariant).
Supports `invariant.log`, `invariant.warn`, and `invariant.error`, which
wrap `console` methods of the same name, and may be stripped in production
by [`rollup-plugin-invariant`](../../archived/rollup-plugin-invariant).
The verbosity of these methods can be globally reconfigured using the
`setVerbosity` function:
```ts
import { setVerbosity } from "ts-invariant";
setVerbosity("log"); // display all messages (default)
setVerbosity("warn"); // display only warnings and errors
setVerbosity("error"); // display only errors
setVerbosity("silent"); // display no messages
```