(obj, fn)
| 71217 | } |
| 71218 | return arr; |
| 71219 | }; |
| 71220 | var isTypedArray = /* @__PURE__ */ ((TypedArray) => { |
| 71221 | return (thing) => { |
| 71222 | return TypedArray && thing instanceof TypedArray; |
| 71223 | }; |
| 71224 | })(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array)); |
| 71225 | var 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; |
nothing calls this directly
no test coverage detected
searching dependent graphs…