Skip to main content
Module

x/aleph/vendor/deno-dom/constructor-lock.ts

The Full-stack Framework in Deno.
Go to Latest
File
/** * Used to enforce illegal constructors */let lock = true;
export function setLock(value: boolean) { lock = value;}
export function getLock(): boolean { return lock;}