~cytrogen/masto-fe

ref: b9adea96953cb70e9222215a676b73b31f85c9c6 masto-fe/app/javascript/mastodon/features/emoji/unicode_to_unified_name.js -rw-r--r-- 485 bytes
b9adea96 — github-actions[bot] New Crowdin Translations (automated) (#26072) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* eslint-disable import/no-commonjs --
   We need to use CommonJS here as its imported into a preval file (`emoji_compressed.js`) */

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;
};