(args)
| 1724 | // They are guaranteed to be the same length; hence, setting `length` to the length |
| 1725 | // of the first array within the result. |
| 1726 | const processReaddirResult = (args) => (args.context.withFileTypes ? handleDirents(args) : handleFilePaths(args)); |
| 1727 | |
| 1728 | function handleDirents({ result, currentPath, context }) { |
| 1729 | const { 0: names, 1: types } = result; |
no test coverage detected
searching dependent graphs…