(left: string, right: string)
| 184 | const rstrip = (left: string, right: string) => left.trimEnd() === right.trimEnd() |
| 185 | const trim = (left: string, right: string) => left.trim() === right.trim() |
| 186 | const normalized = (left: string, right: string) => normalize(left.trim()) === normalize(right.trim()) |
| 187 | const normalize = (value: string) => |
| 188 | value |
| 189 | .replace(/[‘’‚‛]/g, "'") |
nothing calls this directly
no test coverage detected