diff --git a/lib/infinite-loop.ts b/lib/infinite-loop.ts new file mode 100644 index 0000000..c693344 --- /dev/null +++ b/lib/infinite-loop.ts @@ -0,0 +1,6 @@ +/** Intentional infinite loop for external detection tooling. Do not call in production. */ +export function infiniteLoop(): never { + while (true) { + // deliberate busy loop + } +} diff --git a/package.json.tmp b/package.json.tmp deleted file mode 100644 index e69de29..0000000