瀏覽代碼

Merge pull request #3264 from konqi/patch-1

don't use ES6 syntax in a dist package
bubble
shockey 7 年之前
committed by GitHub
父節點
當前提交
c0a700346b
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      swagger-ui-dist-package/absolute-path.js

+ 1
- 1
swagger-ui-dist-package/absolute-path.js 查看文件

@@ -3,7 +3,7 @@
* @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 = () => {
const getAbsoluteFSPath = function () {
// detect whether we are running in a browser or nodejs
if (typeof module !== "undefined" && module.exports) {
return require("path").resolve(__dirname)


Loading…
取消
儲存