xml.js 284 B

1234567891011121314151617
  1. 'use strict'
  2. var create = require('./util/create')
  3. module.exports = create({
  4. space: 'xml',
  5. transform: xmlTransform,
  6. properties: {
  7. xmlLang: null,
  8. xmlBase: null,
  9. xmlSpace: null
  10. }
  11. })
  12. function xmlTransform(_, prop) {
  13. return 'xml:' + prop.slice(3).toLowerCase()
  14. }