UNPKG

177 BJavaScriptView Raw
1global.rootPath = function(fileName) {
2 return __dirname + '/../' + fileName;
3};
4
5global.rootRequire = function(fileName) {
6 return require(global.rootPath(fileName));
7};