make dist absolutePath browser-safe, add test

This commit is contained in:
Dylan
2017-06-10 15:58:34 -07:00
parent d6d5b1d06e
commit df149c543b
4 changed files with 31 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
/*
* getAbsoluteFSPath
* @return {string} When run in NodeJS env, returns the absolute path to the current directory
* When run outside of NodeJS, will return an error message
*/
const getAbsoluteFSPath = () => {
// detect whether we are running in a browser or nodejs
if (typeof module !== "undefined" && module.exports) {
return require("path").resolve(__dirname)
}
return "Error! absolutePath only available when running in NodeJS"
}
module.exports = getAbsoluteFSPath()