1
0
Fork 0
freesewing/plugins/plugin-svgattr/src/index.mjs
2022-09-09 12:13:52 -05:00

18 lines
433 B
JavaScript

import { name, version } from '../data.mjs'
export const plugin = {
name,
version,
hooks: {
preRender: function (svg, attributes = {}) {
for (const key of Object.keys(attributes)) svg.attributes.set(key, attributes[key])
},
},
}
// More specifically named exports
export const svgAttrPlugin = plugin
export const svgattrPlugin = plugin
export const pluginSvgAttr = plugin
export const pluginSvgattr = plugin