UNPKG

ngx-decorate

Version:

Useful decorators for Angular 2 and above

13 lines 344 B
/** @internal */ export function ensureSymbol(target, symbol, value) { if (!target[symbol]) { Object.defineProperty(target, symbol, { configurable: false, enumerable: false, value, writable: false }); } return target[symbol]; } //# sourceMappingURL=ensureSymbol.js.map