morethanwords
4 years ago
5 changed files with 233 additions and 224 deletions
@ -0,0 +1,36 @@ |
|||||||
|
// https://github.com/twitter/twemoji-parser/blob/master/src/lib/regex.js
|
||||||
|
|
||||||
|
export function encodeEmoji(emojiText: string) { |
||||||
|
const codepoints = toCodePoints(removeVS16s(emojiText)).join('-'); |
||||||
|
return codepoints; |
||||||
|
} |
||||||
|
|
||||||
|
const vs16RegExp = /\uFE0F/g; |
||||||
|
// avoid using a string literal like '\u200D' here because minifiers expand it inline
|
||||||
|
const zeroWidthJoiner = String.fromCharCode(0x200d); |
||||||
|
|
||||||
|
const removeVS16s = (rawEmoji: string) => (rawEmoji.indexOf(zeroWidthJoiner) < 0 ? rawEmoji.replace(vs16RegExp, '') : rawEmoji); |
||||||
|
|
||||||
|
export function toCodePoints(unicodeSurrogates: string): Array<string> { |
||||||
|
const points = []; |
||||||
|
let char = 0; |
||||||
|
let previous = 0; |
||||||
|
let i = 0; |
||||||
|
while(i < unicodeSurrogates.length) { |
||||||
|
char = unicodeSurrogates.charCodeAt(i++); |
||||||
|
if(previous) { |
||||||
|
points.push((0x10000 + ((previous - 0xd800) << 10) + (char - 0xdc00)).toString(16)); |
||||||
|
previous = 0; |
||||||
|
} else if (char > 0xd800 && char <= 0xdbff) { |
||||||
|
previous = char; |
||||||
|
} else { |
||||||
|
points.push(char.toString(16)); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
if(points.length && points[0].length == 2) { |
||||||
|
points[0] = '00' + points[0]; |
||||||
|
} |
||||||
|
|
||||||
|
return points; |
||||||
|
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue