Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
14 righe
530 B
14 righe
530 B
/* |
|
* 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 = function () { |
|
// detect whether we are running in a browser or nodejs |
|
if (typeof module !== "undefined" && module.exports) { |
|
return require("path").resolve(__dirname) |
|
} |
|
throw new Error('getAbsoluteFSPath can only be called within a Nodejs environment'); |
|
} |
|
|
|
module.exports = getAbsoluteFSPath
|
|
|