UNPKG

mojibaka

Version:

✨ Browser emoji support detection toolkit

9 lines (6 loc) 306 B
import { prepareCanvasContext, getCharacterWidth } from '../canvas'; export default function detectGenders(context) { context = prepareCanvasContext(context); return getCharacterWidth('🕵' /* Sleuth or Spy */, context) === getCharacterWidth('🕵🏻‍♀️' /* Female Sleuth */, context); }