HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/firetech.komma.pro/node_modules/vinyl-fs/lib/src/getContents/index.js
'use strict';

var through2 = require('through2');
var readDir = require('./readDir');
var readSymbolicLink = require('./readSymbolicLink');
var bufferFile = require('./bufferFile');
var streamFile = require('./streamFile');

function getContents(opt) {
  return through2.obj(opt, function(file, enc, cb) {
    // Don't fail to read a directory
    if (file.isDirectory()) {
      return readDir(file, opt, cb);
    }

    // Process symbolic links included with `followSymlinks` option
    if (file.stat && file.stat.isSymbolicLink()) {
      return readSymbolicLink(file, opt, cb);
    }

    // Read and pass full contents
    if (opt.buffer !== false) {
      return bufferFile(file, opt, cb);
    }

    // Don't buffer anything - just pass streams
    return streamFile(file, opt, cb);
  });
}

module.exports = getContents;