aboutsummaryrefslogtreecommitdiff
path: root/core-rest/src/main/resources/swagger-ui-dist/absolute-path.js
blob: af42bc8f1c5e65db8991187653c4ad40fa5fddb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 = 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