mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 13:32:07 +07:00
18 lines
351 B
JavaScript
18 lines
351 B
JavaScript
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()
|
|
}
|
|
})
|