UNPKG

431 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.LazyServiceIdentifier = void 0;
4var LazyServiceIdentifier = (function () {
5 function LazyServiceIdentifier(cb) {
6 this._cb = cb;
7 }
8 LazyServiceIdentifier.prototype.unwrap = function () {
9 return this._cb();
10 };
11 return LazyServiceIdentifier;
12}());
13exports.LazyServiceIdentifier = LazyServiceIdentifier;