JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "method.js"

Full Path: /var/www/lionsclub/core/vendor/livewire/livewire/js/action/method.js
File size: 298 bytes
MIME-type: text/plain
Charset: utf-8

import Action from '.'

export default class extends Action {
    constructor(method, params, el, skipWatcher = false) {
        super(el, skipWatcher)

        this.type = 'callMethod'
        this.method = method
        this.payload = {
            method,
            params,
        }
    }
}