UNPKG

mojibaka

Version:

✨ Browser emoji support detection toolkit

7 lines (5 loc) 207 B
import { getCharacterWidth } from '../dom'; export default function detectScale() { const ratio = getCharacterWidth('👩' /* woman */) / getCharacterWidth('J!i'); return Math.round(ratio * 10) / 10; }