Migration datamodels !

This commit is contained in:
2026-01-09 17:11:12 +01:00
parent 901df5b395
commit 66fe1418f0
3922 changed files with 316803 additions and 2103 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;