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

x/weakref/mod.ts>IterableWeakMap#forEach

Weak Collection Library for Deno and Node.js.
Go to Latest
method IterableWeakMap.prototype.forEach
import { IterableWeakMap } from "https://deno.land/x/weakref@0.2.0/mod.ts";

Parameters

callbackfn: (
value: V,
key: K,
map: Map<K, V>,
) => void
optional
thisArg: unknown