MCPcopy Index your code
hub / github.com/nodejs/node / isCustomIterable

Function isCustomIterable

lib/internal/fs/promises.js:2114–2116  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

2112}
2113
2114function isCustomIterable(obj) {
2115 return isIterable(obj) && !isArrayBufferView(obj) && typeof obj !== 'string';
2116}
2117
2118async function appendFile(path, data, options) {
2119 options = getOptions(options, { encoding: 'utf8', mode: 0o666, flag: 'a' });

Callers 2

writeFileHandleFunction · 0.85
writeFileFunction · 0.85

Calls 1

isIterableFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…