Commit dist files

This commit is contained in:
Federico Grandi
2020-02-21 16:50:00 +01:00
parent de8a121ebd
commit 9a6336d889
217 changed files with 16175 additions and 0 deletions

16
node_modules/shelljs/src/pwd.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
var path = require('path');
var common = require('./common');
common.register('pwd', _pwd, {
allowGlobbing: false,
});
//@
//@ ### pwd()
//@
//@ Returns the current directory.
function _pwd() {
var pwd = path.resolve(process.cwd());
return pwd;
}
module.exports = _pwd;