Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/develar/lazy-val
https://github.com/develar/lazy-val
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/develar/lazy-val
- Owner: develar
- Created: 2017-08-06T10:46:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-14T05:41:25.000Z (over 3 years ago)
- Last Synced: 2024-04-15T05:51:24.926Z (7 months ago)
- Language: TypeScript
- Size: 23.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## lazy-val
Lazy value.
```typescript
class Lazy {
constructor(creator: () => Promise)
readonly hasValue: boolean
value: Promise
}
```