Files
chat-proxy/frontend/node_modules/property-information/lib/xml.js
T
Samuele E. Locatelli 1d4b5aba63 Init repo con git
2025-08-21 08:59:27 +00: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()
}
})