1ff70886a1
Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
24 lines
353 B
JavaScript
24 lines
353 B
JavaScript
|
|
|
|
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;
|
|
};
|