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