Pinafore-Web-Client-Frontend/src/routes/_utils/once.js

9 lines
231 B
JavaScript
Raw Normal View History

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