xlink.js 351 B

1234567891011121314151617
  1. import {create} from './util/create.js'
  2. export const xlink = create({
  3. properties: {
  4. xLinkActuate: null,
  5. xLinkArcRole: null,
  6. xLinkHref: null,
  7. xLinkRole: null,
  8. xLinkShow: null,
  9. xLinkTitle: null,
  10. xLinkType: null
  11. },
  12. space: 'xlink',
  13. transform(_, property) {
  14. return 'xlink:' + property.slice(5).toLowerCase()
  15. }
  16. })