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

29
node_modules/replace-homedir/index.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
'use strict';
var path = require('path');
var homedir = require('homedir-polyfill');
var isAbsolute = require('is-absolute');
var removeTrailingSep = require('remove-trailing-separator');
function replaceHomedir(filepath, replacement) {
if (typeof filepath !== 'string') {
throw new Error('Path for replace-homedir must be a string.');
}
if (!isAbsolute(filepath)) {
return filepath;
}
var home = removeTrailingSep(homedir());
var lookupHome = home + path.sep;
var lookupPath = removeTrailingSep(filepath) + path.sep;
if (lookupPath.indexOf(lookupHome) !== 0) {
return filepath;
}
return filepath.replace(home, replacement);
}
module.exports = replaceHomedir;