UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

12 lines (8 loc) 232 B
'use strict'; Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); function forEach(map, callback) { for (const [key, value] of map) { callback(value, key, map); } } exports.forEach = forEach;