Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/websocket/deps.ts>EventEmitter#rawListeners

🦕 A simple WebSocket library like ws of node.js library for deno
Latest
method EventEmitter.prototype.rawListeners
import { EventEmitter } from "https://deno.land/x/websocket@v0.1.4/deps.ts";

Returns a copy of the array of listeners for the event named eventName, including any wrappers (such as those created by .once()).

Parameters

eventName: string | symbol

Returns

Array<GenericFunction | WrappedFunction>