(c)
| 58 | } |
| 59 | |
| 60 | function fromCodePoint (c) { |
| 61 | /* eslint no-bitwise:0 */ |
| 62 | if (c > 0xffff) { |
| 63 | c -= 0x10000 |
| 64 | const surrogate1 = 0xd800 + (c >> 10) |
| 65 | const surrogate2 = 0xdc00 + (c & 0x3ff) |
| 66 | |
| 67 | return String.fromCharCode(surrogate1, surrogate2) |
| 68 | } |
| 69 | return String.fromCharCode(c) |
| 70 | } |
| 71 | |
| 72 | const UNESCAPE_MD_RE = /\\([!"#$%&'()*+,\-./:;<=>?@[\\\]^_`{|}~])/g |
| 73 | const ENTITY_RE = /&([a-z#][a-z0-9]{1,31});/gi |
no outgoing calls
no test coverage detected
searching dependent graphs…