(path: string)
| 34 | * Converts all '\' in @path to unix style '/' |
| 35 | */ |
| 36 | export function unifyPath(path: string): string { |
| 37 | return path ? path.replace(/\\/g, '/') : path; |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Create unique number identifier for @text |
no outgoing calls
no test coverage detected
searching dependent graphs…