UNPKG

@aurigma/design-atoms

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

11 lines 264 B
export class Lazy { get value() { return this._value != null ? this._value : (this._value = this._factory()); } constructor(_factory) { this._factory = _factory; } } //# sourceMappingURL=Lazy.js.map