UNPKG
mojibaka
Version:
latest (1.0.2)
next (1.0.0-pre)
1.0.2
1.0.1
1.0.0
1.0.0-pre
0.0.1
✨ Browser emoji support detection toolkit
github.com/ticky/mojibaka
ticky/mojibaka
mojibaka
/
src
/
detect
/
scale.js
7 lines
(5 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{ getCharacterWidth }
from
'../dom'
;
export
default
function
detectScale
(
) {
const
ratio =
getCharacterWidth
(
'👩'
/* woman */
) /
getCharacterWidth
(
'J!i'
);
return
Math
.
round
(ratio *
10
) /
10
; }