mojibaka
Version:
✨ Browser emoji support detection toolkit
12 lines (9 loc) • 378 B
JavaScript
export function getCharacterWidth(string) {
const span = document.createElement('span');
span.style.font = '16px Times, "Times New Roman", serif';
span.appendChild(document.createTextNode(string));
document.documentElement.appendChild(span);
const { width } = span.getBoundingClientRect();
document.documentElement.removeChild(span);
return Math.round(width);
}