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