Files
skills-here-run-place/node_modules/property-information/lib/xml.js
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

10 lines
233 B
JavaScript

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