site/node_modules/property-information/lib/xml.js
2024-10-14 08:09:33 +02:00

10 lines
225 B
JavaScript

import {create} from './util/create.js'
export const xml = create({
space: 'xml',
transform(_, prop) {
return 'xml:' + prop.slice(3).toLowerCase()
},
properties: {xmlLang: null, xmlBase: null, xmlSpace: null}
})