(socketPath: string)
| 35 | } |
| 36 | |
| 37 | export function socketPathRE(socketPath: string) { |
| 38 | return new RegExp(`^${socketPath.replace(/\*/g, "[^/]+")}$`); |
| 39 | } |
| 40 | |
| 41 | export function restPath(arg: string | string[]) { |
| 42 | let a = copyOrSplit(arg); |
no outgoing calls
no test coverage detected