about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/util/emoji/unicode_to_unified_name.js
blob: d29550f122683043fed10a5ce0dc222ec3d320b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
};