├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── lib └── xml-name-validator.js ├── package.json ├── scripts └── benchmark.js └── test ├── cases.json └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/README.md -------------------------------------------------------------------------------- /lib/xml-name-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/lib/xml-name-validator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/package.json -------------------------------------------------------------------------------- /scripts/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/scripts/benchmark.js -------------------------------------------------------------------------------- /test/cases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/test/cases.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/xml-name-validator/HEAD/test/test.js --------------------------------------------------------------------------------