From 76cb9c2a39d477a64824a985ade40507e3bbade1 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Fri, 13 Feb 2026 21:34:48 -0800 Subject: feat(vanilla): add testing infrastructure and tests (NK-wjnczv) --- vanilla/node_modules/xml-name-validator/README.md | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 vanilla/node_modules/xml-name-validator/README.md (limited to 'vanilla/node_modules/xml-name-validator/README.md') diff --git a/vanilla/node_modules/xml-name-validator/README.md b/vanilla/node_modules/xml-name-validator/README.md new file mode 100644 index 0000000..175f86a --- /dev/null +++ b/vanilla/node_modules/xml-name-validator/README.md @@ -0,0 +1,35 @@ +# Validate XML Names and Qualified Names + +This package simply tells you whether or not a string matches the [`Name`](http://www.w3.org/TR/xml/#NT-Name) or [`QName`](http://www.w3.org/TR/xml-names/#NT-QName) productions in the XML Namespaces specification. We use it for implementing the [validate](https://dom.spec.whatwg.org/#validate) algorithm in jsdom, but you can use it for whatever you want. + +## Usage + +This package's main module exports two functions, `name()` and `qname()`. Both take a string and return a boolean indicating whether or not the string matches the relevant production. + +```js +"use strict": +const xnv = require("xml-name-validator"); + +// Will return true +xnv.name("x"); +xnv.name(":"); +xnv.name("a:0"); +xnv.name("a:b:c"); + +// Will return false +xnv.name("\\"); +xnv.name("'"); +xnv.name("0"); +xnv.name("a!"); + +// Will return true +xnv.qname("x"); +xnv.qname("a0"); +xnv.qname("a:b"); + +// Will return false +xnv.qname(":a"); +xnv.qname(":b"); +xnv.qname("a:b:c"); +xnv.qname("a:0"); +``` -- cgit v1.2.3