updated npm modules

This commit is contained in:
2019-05-20 20:43:45 -05:00
parent 2319197b81
commit f166b72b7d
1113 changed files with 8758 additions and 12227 deletions

6
node_modules/is-path-cwd/index.js generated vendored
View File

@@ -1,6 +1,4 @@
'use strict';
var path = require('path');
const path = require('path');
module.exports = function (str) {
return path.resolve(str) === path.resolve(process.cwd());
};
module.exports = path_ => path.resolve(path_) === process.cwd();