File "index.js"

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


export * from './debounce'
export * from './wire-directives'
export * from './walk'
export * from './dispatch'
export * from './getCsrfToken'

export function kebabCase(subject) {
    return subject.replace(/([a-z])([A-Z])/g, '$1-$2').replace(/[_\s]/, '-').toLowerCase()
}

export function tap(output, callback) {
    callback(output)

    return output
}