read-dir.js 126 B

12345678
  1. 'use strict';
  2. function readDir(file, optResolver, onRead) {
  3. // Do nothing for now
  4. onRead();
  5. }
  6. module.exports = readDir;