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

https://github.com/kenpusney/istoryh


https://github.com/kenpusney/istoryh

Last synced: 10 months ago
JSON representation

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];
```