(value: string | undefined)
| 55 | * @internal |
| 56 | */ |
| 57 | export function parse(value: string | undefined): object | undefined { |
| 58 | return typeof value === 'string' ? JSON.parse(value) : undefined; |
| 59 | } |
| 60 | |
| 61 | const directorySeparator = '/'; |
| 62 | const backslashRegExp = /\\/g; |
no outgoing calls
no test coverage detected
searching dependent graphs…