UNPKG

laravel-mix

Version:

The power of webpack, distilled for the rest of us.

14 lines (12 loc) 305 B
const { Component } = require('./Component'); module.exports = class Before extends Component { /** * Register the component. * * @param {() => void|Promise<void>} callback * @return {void} */ register(callback) { this.context.listen('init', callback); } };