(f)
| 65 | |
| 66 | export function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) { |
| 67 | function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; } |
| 68 | var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value"; |
| 69 | var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null; |
| 70 | var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {}); |
no outgoing calls
no test coverage detected
searching dependent graphs…