UNPKG

fabric

Version:

Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.

6 lines (4 loc) 194 B
import { attributesMap } from './constants'; export const normalizeAttr = ( attr: keyof typeof attributesMap | string, ): string => attributesMap[attr as keyof typeof attributesMap] ?? attr;