转圈圈
摘要: ```js /** * @param {string} path * @return {string} */ function simplifyPath(path) { const pathArr = path.split('/').filter(item => item !== ''); const result = ['/']; for (const i of path... 阅读全文
posted @ 2019-05-31 12:02 rosendolu 阅读(96) 评论(0) 推荐(0) 编辑