(path: string)
| 38 | : '/'; |
| 39 | |
| 40 | export const stripEndSlash = (path: string) => |
| 41 | path[path.length - 1] === '/' ? path.slice(0, path.length - 1) : path; |
| 42 | |
| 43 | export const isFunction = (val: any): val is Function => |
| 44 | typeof val === 'function'; |
no outgoing calls
no test coverage detected