fabric
Version:
Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.
19 lines (17 loc) • 434 B
JavaScript
/**
* Takes a style object and parses it in one that has only defined values
* and lowercases properties
* @param style
* @param oStyle
*/
function parseStyleObject(style, oStyle) {
Object.entries(style).forEach(_ref => {
let [prop, value] = _ref;
if (value === undefined) {
return;
}
oStyle[prop.toLowerCase()] = value;
});
}
export { parseStyleObject };
//# sourceMappingURL=parseStyleObject.mjs.map