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