https://github.com/kenpusney/istoryh
https://github.com/kenpusney/istoryh
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kenpusney/istoryh
- Owner: kenpusney
- Created: 2018-11-02T16:50:25.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-02T18:12:14.000Z (about 7 years ago)
- Last Synced: 2025-03-03T09:39:18.947Z (11 months ago)
- Language: TypeScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IstoryH
### Usage
```javascript
const {isto} = require('istoryh');
const hist = isto(10) // max capacity;
hist.push(123);
hist.push(456);
hist.list() // => [456, 123];
```