(value: string, type?: string)
| 185 | } |
| 186 | |
| 187 | export function getModuleMarker(value: string, type?: string): string { |
| 188 | return type ? `__rf_${type}__${value}` : `__rf_placeholder__${value}` |
| 189 | } |
| 190 | |
| 191 | export function normalizePath(id: string): string { |
| 192 | return posix.normalize(id.replace(/\\/g, '/')) |
no outgoing calls
no test coverage detected
searching dependent graphs…