(value)
| 30 | } |
| 31 | |
| 32 | function test(value) { |
| 33 | return ( |
| 34 | typeof value === "string" && |
| 35 | (value.includes("\\") || |
| 36 | replacements.some(({ find }) => value.includes(find))) |
| 37 | ); |
| 38 | } |
| 39 | |
| 40 | function print(value, serializer) { |
| 41 | return serializer(replace(value)); |
no outgoing calls
no test coverage detected
searching dependent graphs…