(absolutePath: string)
| 9 | |
| 10 | /** Encode a resolved absolute path as a marker comment for later chunk resolution. */ |
| 11 | export function encodeResolvedModule(absolutePath: string) { |
| 12 | return `/*${RESOLVED_MODULE_PREFIX}${absolutePath}*/`; |
| 13 | } |
| 14 | |
| 15 | /** Decode a resolved module marker comment from text. Returns the absolute path, or null if not found. */ |
| 16 | function decodeResolvedModule(text: string) { |
no outgoing calls
no test coverage detected
searching dependent graphs…