You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
346 B
18 lines
346 B
7 years ago
|
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;
|
||
|
};
|