aboutsummaryrefslogtreecommitdiff
path: root/node_modules/app-root-path/lib/app-root-path.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/app-root-path/lib/app-root-path.js')
-rw-r--r--node_modules/app-root-path/lib/app-root-path.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/node_modules/app-root-path/lib/app-root-path.js b/node_modules/app-root-path/lib/app-root-path.js
new file mode 100644
index 00000000..03596e55
--- /dev/null
+++ b/node_modules/app-root-path/lib/app-root-path.js
@@ -0,0 +1,30 @@
+'use strict';
+
+module.exports = function(dirname) {
+ var path = require('path');
+ var resolve = require('./resolve.js');
+ var appRootPath = resolve(dirname);
+
+ var publicInterface = {
+ resolve: function(pathToModule) {
+ return path.join(appRootPath, pathToModule);
+ },
+
+ require: function(pathToModule) {
+ return require(publicInterface.resolve(pathToModule));
+ },
+
+ toString: function() {
+ return appRootPath;
+ },
+
+ setPath: function(explicitlySetPath) {
+ appRootPath = path.resolve(explicitlySetPath);
+ publicInterface.path = appRootPath;
+ },
+
+ path: appRootPath
+ };
+
+ return publicInterface;
+}; \ No newline at end of file