Skip to main content
Module

x/ramda/mod.ts>forEachObjIndexed

:ram: Practical functional Javascript
Latest
variable forEachObjIndexed
import { forEachObjIndexed } from "https://deno.land/x/ramda@v0.27.2/mod.ts";

Iterate over an input object, calling a provided function fn for each key and value in the object.

fn receives three argument: (value, key, obj).