mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2024-11-02 06:33:42 +08:00
15 lines
530 B
JavaScript
15 lines
530 B
JavaScript
|
/*
|
||
|
* 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
|