UNPKG

nestjs-auto-reflect-metadata-emitter

Version:

[![Actions Status](https://github.com/Codibre/nestjs-auto-reflect-metadata-emitter/workflows/build/badge.svg)](https://github.com/Codibre/nestjs-auto-reflect-metadata-emitter/actions) [![Actions Status](https://github.com/Codibre/nestjs-auto-reflect-metad

15 lines 416 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getMetadataStorage = getMetadataStorage; exports.blockAccess = blockAccess; let blocked = false; const metadata = new Map(); function getMetadataStorage() { if (!blocked) return metadata; throw new Error('Invalid Operation'); } function blockAccess() { blocked = true; } //# sourceMappingURL=meta-storage.js.map