All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.utils.once.js Maven / Gradle / Ivy

There is a newer version: 3.14.1
Show newest version

export function once(callback, fallback = () => {}) {
    let called = false

    return function () {
        if (! called) {
            called = true

            callback.apply(this, arguments)
        } else {
            fallback.apply(this, arguments)
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy