Files
GNX-mailEnterprise/frontend/node_modules/property-information/lib/xml.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03: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}
})