File "index.js"

Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/js/action/index.js
File size: 635 bytes
MIME-type: text/plain
Charset: utf-8

export default class {
    constructor(el, skipWatcher = false) {
        this.el = el
        this.skipWatcher = skipWatcher
        this.resolveCallback = () => { }
        this.rejectCallback = () => { }
        this.signature = (Math.random() + 1).toString(36).substring(8)
    }

    toId() {
        return btoa(encodeURIComponent(this.el.outerHTML))
    }

    onResolve(callback) {
        this.resolveCallback = callback
    }

    onReject(callback) {
        this.rejectCallback = callback
    }

    resolve(thing) {
        this.resolveCallback(thing)
    }

    reject(thing) {
        this.rejectCallback(thing)
    }
}