Files
automatic-dispose/node_modules/vinyl-fs/lib/src/getContents/readDir.js
2018-11-24 14:43:59 +01:00

9 lines
115 B
JavaScript

'use strict';
function readDir(file, cb) {
// do nothing for now
cb(null, file);
}
module.exports = readDir;