source: node_modules/property-information/lib/xmlns.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 324 bytes
Line 
1'use strict'
2
3var create = require('./util/create')
4var caseInsensitiveTransform = require('./util/case-insensitive-transform')
5
6module.exports = create({
7 space: 'xmlns',
8 attributes: {
9 xmlnsxlink: 'xmlns:xlink'
10 },
11 transform: caseInsensitiveTransform,
12 properties: {
13 xmlns: null,
14 xmlnsXLink: null
15 }
16})
Note: See TracBrowser for help on using the repository browser.