xml.js 233 B

123456789
  1. import {create} from './util/create.js'
  2. export const xml = create({
  3. properties: {xmlBase: null, xmlLang: null, xmlSpace: null},
  4. space: 'xml',
  5. transform(_, property) {
  6. return 'xml:' + property.slice(3).toLowerCase()
  7. }
  8. })