aboutsummaryrefslogtreecommitdiff
path: root/node_modules/vinyl-fs/lib/src/getContents/readDir.js
blob: a800d4738fb5f01cd4363ab855fd4e600487f275 (plain)
1
2
3
4
5
6
7
8
'use strict';

function readDir(file, opt, cb) {
  // Do nothing for now
  cb(null, file);
}

module.exports = readDir;