UNPKG

mojibaka

Version:

✨ Browser emoji support detection toolkit

9 lines (6 loc) 299 B
import { prepareCanvasContext, getCharacterWidth } from '../canvas'; export default function detectFitzpatrick(context) { context = prepareCanvasContext(context); return getCharacterWidth('👸' /* Princess */, context) === getCharacterWidth('👸🏿' /* Princess, Type-5 */, context); }