knowledgebase_law/node_modules/property-information/lib/xlink.js

18 lines
351 B
JavaScript
Raw Normal View History

2025-04-11 23:47:09 +08:00
import {create} from './util/create.js'
export const xlink = create({
properties: {
xLinkActuate: null,
xLinkArcRole: null,
xLinkHref: null,
xLinkRole: null,
xLinkShow: null,
xLinkTitle: null,
xLinkType: null
},
space: 'xlink',
transform(_, property) {
return 'xlink:' + property.slice(5).toLowerCase()
}
})