aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/swagger-ui-dist/absolute-path.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/swagger-ui-dist/absolute-path.js')
-rw-r--r--src/main/resources/swagger-ui-dist/absolute-path.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main/resources/swagger-ui-dist/absolute-path.js b/src/main/resources/swagger-ui-dist/absolute-path.js
deleted file mode 100644
index af42bc8..0000000
--- a/src/main/resources/swagger-ui-dist/absolute-path.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * 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