first commit

This commit is contained in:
2024-01-19 11:09:11 +01:00
commit b18af7a943
29473 changed files with 4500547 additions and 0 deletions

1
node_modules/karma-source-map-support/lib/client.js generated vendored Normal file
View File

@@ -0,0 +1 @@
sourceMapSupport.install();

20
node_modules/karma-source-map-support/lib/index.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
const path = require('path');
const smsPath = path.dirname(require.resolve('source-map-support'));
const createPattern = function(pattern) {
return {pattern: pattern, included: true, served: true, watched: false};
};
const init = function(files) {
files.unshift(createPattern(path.join(__dirname, 'client.js')));
files.unshift(
createPattern(path.join(smsPath, 'browser-source-map-support.js'))
);
};
init.$inject = ['config.files'];
module.exports = {
'framework:source-map-support': ['factory', init]
};