UNPKG

@nestjs/core

Version:

Nest - modern, fast, powerful node.js web framework (@core)

10 lines (9 loc) 223 B
export class InitializeOnPreviewAllowlist { static allowlist = new WeakMap(); static add(type) { this.allowlist.set(type, true); } static has(type) { return this.allowlist.has(type); } }