This commit is contained in:
2021-11-21 11:18:28 +01:00
parent 7a358eb836
commit 230b10b2a3
9339 changed files with 892519 additions and 62 deletions

22
node_modules/resolve-dir/index.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
/*!
* resolve-dir <https://github.com/jonschlinkert/resolve-dir>
*
* Copyright (c) 2015, Jon Schlinkert.
* Licensed under the MIT License.
*/
'use strict';
var path = require('path');
var expand = require('expand-tilde');
var gm = require('global-modules');
module.exports = function resolveDir(dir) {
if (dir.charAt(0) === '~') {
dir = expand(dir);
}
if (dir.charAt(0) === '@') {
dir = path.join(gm, dir.slice(1));
}
return dir;
};