escalade-price-store
v1.1.3
Published
An event-based store system for getting Escalade Sports pricing. Stores all fetched prices in a cookie for quick retrieval.
Downloads
13
Readme
escalade-price-store
An event-based store system for getting Escalade Sports pricing. Stores all fetched prices in a cookie for quick retrieval.
Installation
yarn add escalade-price-store
Usage
import PriceStore from 'escalade-price-store'
const priceStore = new PriceStore({
site: `goalrilla`,
ids: [ `ID1`, `ID2` ]
})
function allChanged(prices){
console.log(prices)
}
priceStore.addEvent(allChanged)
priceStore.removeEvent(allChanged)