Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 | 6x 6x 4x 3x 6x | const readdir = require('fs').readdirSync; const processReaddirFiles = require('./processReaddirFiles'); function scandir(dir, each) { const files = readdir(dir); return processReaddirFiles(files, each); } module.exports = scandir; |