Skip to main content
Module

std/node/events.ts>once

Deno standard library
Go to Latest
function once
import { once } from "https://deno.land/std@0.34.0/node/events.ts";

Creates a Promise that is fulfilled when the EventEmitter emits the given event or that is rejected when the EventEmitter emits 'error'. The Promise will resolve with an array of all the arguments emitted to the given event.

Parameters

emitter: EventEmitter | EventTarget
name: string

Returns

Promise<any[]>