0
0
Fork 0

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;
};