Add assets from Twemoji 13.1.0 (#16345)

* Add assets from Twemoji 13.1.0

* Update emoji-mart
This commit is contained in:
Eugen Rochko
2021-06-01 14:35:49 +02:00
committed by GitHub
parent aafac8dc71
commit abd7b4636a
430 changed files with 544 additions and 111 deletions

View File

@@ -2,16 +2,20 @@ function padLeft(str, num) {
while (str.length < num) {
str = '0' + str;
}
return str;
}
exports.unicodeToUnifiedName = (str) => {
let output = '';
for (let i = 0; i < str.length; i += 2) {
if (i > 0) {
output += '-';
}
output += padLeft(str.codePointAt(i).toString(16).toUpperCase(), 4);
}
return output;
};