~cytrogen/masto-fe

ref: 8eba3f59f876e3dfaf589a8c08919548df245956 masto-fe/app/javascript/mastodon/features/emoji/unicode_to_unified_name.js -rw-r--r-- 485 bytes
8eba3f59 — daj [bugfix] Update public/auth.js (#38) 1 year, 3 days 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;
};