![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/metras.v32.1/node_modules/loose-envify/ |
'use strict'; var stream = require('stream'); var util = require('util'); var replace = require('./replace'); var jsonExtRe = /\.json$/; module.exports = function(rootEnv) { rootEnv = rootEnv || process.env; return function (file, trOpts) { if (jsonExtRe.test(file)) { return stream.PassThrough(); } var envs = trOpts ? [rootEnv, trOpts] : [rootEnv]; return new LooseEnvify(envs); }; }; function LooseEnvify(envs) { stream.Transform.call(this); this._data = ''; this._envs = envs; } util.inherits(LooseEnvify, stream.Transform); LooseEnvify.prototype._transform = function(buf, enc, cb) { this._data += buf; cb(); }; LooseEnvify.prototype._flush = function(cb) { var replaced = replace(this._data, this._envs); this.push(replaced); cb(); };