lazy-val

Lazy value.


License
MIT
Install
npm install [email protected]

Documentation

lazy-val

Lazy value.

class Lazy<T> {
    constructor(creator: () => Promise<T>)
    readonly hasValue: boolean
    value: Promise<T>
}