(thisArg, initializers, value)
| 92 | }; |
| 93 | |
| 94 | export function __runInitializers(thisArg, initializers, value) { |
| 95 | var useValue = arguments.length > 2; |
| 96 | for (var i = 0; i < initializers.length; i++) { |
| 97 | value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg); |
| 98 | } |
| 99 | return useValue ? value : void 0; |
| 100 | }; |
| 101 | |
| 102 | export function __propKey(x) { |
| 103 | return typeof x === "symbol" ? x : "".concat(x); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…