Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/pptr/mod.ts>EventEmitter#once

Headless Chrome Deno API
Latest
method EventEmitter.prototype.once
Re-export
import { EventEmitter } from "https://deno.land/x/pptr@1.2.0/mod.ts";

Like on but the listener will only be fired once and then it will be removed.

Parameters

event: EventType
  • the event you'd like to listen to
handler: Handler
  • the handler function to run when the event occurs

Returns

this to enable you to chain calls.