Migration datamodels !

This commit is contained in:
2026-01-10 16:05:56 +01:00
parent 627ccc707b
commit 438caf3b1c
3946 changed files with 318813 additions and 3453 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;