mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 08:58:16 +08:00
10 lines
298 B
JavaScript
10 lines
298 B
JavaScript
|
import {create} from './util/create.js'
|
||
|
import {caseInsensitiveTransform} from './util/case-insensitive-transform.js'
|
||
|
|
||
|
export const xmlns = create({
|
||
|
attributes: {xmlnsxlink: 'xmlns:xlink'},
|
||
|
properties: {xmlnsXLink: null, xmlns: null},
|
||
|
space: 'xmlns',
|
||
|
transform: caseInsensitiveTransform
|
||
|
})
|