Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/develar/lazy-val


https://github.com/develar/lazy-val

Last synced: 14 days ago
JSON representation

Awesome Lists containing this project

README

        

## lazy-val

Lazy value.

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