@nestjs/core
Version:
Nest - modern, fast, powerful node.js web framework (@core)
14 lines (13 loc) • 427 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.InitializeOnPreviewAllowlist = void 0;
class InitializeOnPreviewAllowlist {
static add(type) {
this.allowlist.set(type, true);
}
static has(type) {
return this.allowlist.has(type);
}
}
exports.InitializeOnPreviewAllowlist = InitializeOnPreviewAllowlist;
InitializeOnPreviewAllowlist.allowlist = new WeakMap();
;