* Replace backslashes with forward slashes.
(value: string)
| 87 | * Replace backslashes with forward slashes. |
| 88 | */ |
| 89 | function normalizeSlashes(value: string): string { |
| 90 | return value.replace(/\\/g, '/'); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Return type for registering `ts-node`. |
no test coverage detected