UNPKG

inversify

Version:

A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.

11 lines (10 loc) 290 B
var LazyServiceIdentifier = (function () { function LazyServiceIdentifier(cb) { this._cb = cb; } LazyServiceIdentifier.prototype.unwrap = function () { return this._cb(); }; return LazyServiceIdentifier; }()); export { LazyServiceIdentifier };