(path, file)
| 69 | } |
| 70 | |
| 71 | function joinPath (path, file) { |
| 72 | return removeEndSlash(path) + '/' + file; |
| 73 | } |
| 74 | |
| 75 | function removeEndSlash (path) { |
| 76 | return path && path.charAt(path.length - 1) == '/' ? path.substr(0, path.length - 1) : path; |
no test coverage detected