(ch)
| 45 | |
| 46 | static buildMessage(expected, found) { |
| 47 | function hex(ch) { |
| 48 | return ch.codePointAt(0).toString(16).toUpperCase(); |
| 49 | } |
| 50 | |
| 51 | const nonPrintable = Object.prototype.hasOwnProperty.call(RegExp.prototype, "unicode") |
| 52 | ? new RegExp("[\\p{C}\\p{Mn}\\p{Mc}]", "gu") |
nothing calls this directly
no outgoing calls
no test coverage detected