UNPKG

@ably/laravel-echo

Version:

Laravel Echo library for beautiful Ably integration

32 lines (28 loc) 653 B
/** * 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; } }