lazy-val

Lazy value.


License
MIT
Install
npm install lazy-val@1.0.5

Documentation

lazy-val

Lazy value.

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