MCPcopy Index your code
hub / github.com/di-sukharev/opencommit / forEachEntry

Function forEachEntry

out/cli.cjs:71219–71227  ·  view source on GitHub ↗
(obj, fn)

Source from the content-addressed store, hash-verified

71217 }
71218 return arr;
71219};
71220var isTypedArray = /* @__PURE__ */ ((TypedArray) => {
71221 return (thing) => {
71222 return TypedArray && thing instanceof TypedArray;
71223 };
71224})(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array));
71225var forEachEntry = (obj, fn) => {
71226 const generator = obj && obj[iterator];
71227 const _iterator = generator.call(obj);
71228 let result;
71229 while ((result = _iterator.next()) && !result.done) {
71230 const pair = result.value;

Callers

nothing calls this directly

Calls 1

nextMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…