Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
'use strict';
const semver = require('semver');
/**
* In order to increase node version support, this loads the version of context
* that is appropriate for the version of on nodejs that is running.
* Node < v8 - uses AsyncWrap and async-hooks-jl
* Node >= v8 - uses native async-hooks
*/
if(process && semver.gte(process.versions.node, '8.0.0')){
module.exports = require('./context');
}else{
module.exports = require('./context-legacy');
}