pinafore/src/routes/_utils/once.js

9 lines
231 B
JavaScript
Raw Normal View History

2018-03-24 18:04:54 -07:00
// svelte helper to add a .once() method similar to .on, but only fires once
export function once (eventName, callback) {
2019-08-03 13:49:37 -07:00
const listener = this.on(eventName, eventValue => {
2018-03-24 18:04:54 -07:00
listener.cancel()
callback(eventValue)
})
}