mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-04 22:17:22 +00:00
push all website files
This commit is contained in:
25
website/functions/node_modules/@mrmlnc/readdir-enhanced/lib/stream/index.js
generated
vendored
Normal file
25
website/functions/node_modules/@mrmlnc/readdir-enhanced/lib/stream/index.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = readdirStream;
|
||||
|
||||
const DirectoryReader = require('../directory-reader');
|
||||
|
||||
let streamFacade = {
|
||||
fs: require('fs'),
|
||||
forEach: require('../async/for-each'),
|
||||
async: true
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns the {@link stream.Readable} of an asynchronous {@link DirectoryReader}.
|
||||
*
|
||||
* @param {string} dir
|
||||
* @param {object} [options]
|
||||
* @param {object} internalOptions
|
||||
*/
|
||||
function readdirStream (dir, options, internalOptions) {
|
||||
internalOptions.facade = streamFacade;
|
||||
|
||||
let reader = new DirectoryReader(dir, options, internalOptions);
|
||||
return reader.stream;
|
||||
}
|
Reference in New Issue
Block a user