Code coverage report for gulp-watch/lib/getContents/readDir.js

Statements: 75% (3 / 4)      Branches: 100% (0 / 0)      Functions: 0% (0 / 1)      Lines: 75% (3 / 4)     

All files » gulp-watch/lib/getContents/ » readDir.js
1 2 3 4 5 6 7 8 91   1         1  
'use strict';
 
function readDir(file, cb) {
  // do nothing for now
  cb(null, file);
}
 
module.exports = readDir;