https://github.com/pawsong/atmemo
https://github.com/pawsong/atmemo
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pawsong/atmemo
- Owner: pawsong
- Created: 2020-03-29T14:09:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T22:04:04.000Z (over 2 years ago)
- Last Synced: 2025-02-18T13:41:17.592Z (5 months ago)
- Language: TypeScript
- Size: 846 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# atmemo
decorator for getter lazy evaluation
## Example
```typescript
import memo from 'atmemo'class MyModule {
@memo get field() {
return {}
}
}const mod = new MyModule()
assert(mod.field === mod.field)
```## License
MIT