Add node modules and new code for release (#57)
Co-authored-by: taakleton <taakleton@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
da63a48ad7
commit
a517f2ff65
73
node_modules/xmlchars/xml/1.1/ed2.d.ts
generated
vendored
Normal file
73
node_modules/xmlchars/xml/1.1/ed2.d.ts
generated
vendored
Normal file
@ -0,0 +1,73 @@
|
||||
/**
|
||||
* Character classes and associated utilities for the 2nd edition of XML 1.1.
|
||||
*
|
||||
* @author Louis-Dominique Dubeau
|
||||
* @license MIT
|
||||
* @copyright Louis-Dominique Dubeau
|
||||
*/
|
||||
export declare const CHAR = "\u0001-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF";
|
||||
export declare const RESTRICTED_CHAR = "\u0001-\b\v\f\u000E-\u001F-\u0084\u0086-\u009F";
|
||||
export declare const S = " \t\r\n";
|
||||
export declare const NAME_START_CHAR = ":A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\uD800\uDC00-\uDB7F\uDFFF";
|
||||
export declare const NAME_CHAR: string;
|
||||
export declare const CHAR_RE: RegExp;
|
||||
export declare const RESTRICTED_CHAR_RE: RegExp;
|
||||
export declare const S_RE: RegExp;
|
||||
export declare const NAME_START_CHAR_RE: RegExp;
|
||||
export declare const NAME_CHAR_RE: RegExp;
|
||||
export declare const NAME_RE: RegExp;
|
||||
export declare const NMTOKEN_RE: RegExp;
|
||||
/** All characters in the ``S`` production. */
|
||||
export declare const S_LIST: number[];
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``CHAR`` production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``CHAR``.
|
||||
*/
|
||||
export declare function isChar(c: number): boolean;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``RESTRICTED_CHAR`` production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``RESTRICTED_CHAR``.
|
||||
*/
|
||||
export declare function isRestrictedChar(c: number): boolean;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``CHAR`` production and does not
|
||||
* match the ``RESTRICTED_CHAR`` production. ``isCharAndNotRestricted(x)`` is
|
||||
* equivalent to ``isChar(x) && !isRestrictedChar(x)``. This function is faster
|
||||
* than running the two-call equivalent.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``CHAR`` and does not match
|
||||
* ``RESTRICTED_CHAR``.
|
||||
*/
|
||||
export declare function isCharAndNotRestricted(c: number): boolean;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``S`` (space) production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``S``.
|
||||
*/
|
||||
export declare function isS(c: number): boolean;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``NAME_START_CHAR`` production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``NAME_START_CHAR``.
|
||||
*/
|
||||
export declare function isNameStartChar(c: number): boolean;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``NAME_CHAR`` production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``NAME_CHAR``.
|
||||
*/
|
||||
export declare function isNameChar(c: number): boolean;
|
145
node_modules/xmlchars/xml/1.1/ed2.js
generated
vendored
Normal file
145
node_modules/xmlchars/xml/1.1/ed2.js
generated
vendored
Normal file
@ -0,0 +1,145 @@
|
||||
"use strict";
|
||||
/**
|
||||
* Character classes and associated utilities for the 2nd edition of XML 1.1.
|
||||
*
|
||||
* @author Louis-Dominique Dubeau
|
||||
* @license MIT
|
||||
* @copyright Louis-Dominique Dubeau
|
||||
*/
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//
|
||||
// Fragments.
|
||||
//
|
||||
exports.CHAR = "\u0001-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF";
|
||||
exports.RESTRICTED_CHAR = "\u0001-\u0008\u000B\u000C\u000E-\u001F\u007F-\u0084\u0086-\u009F";
|
||||
exports.S = " \t\r\n";
|
||||
// tslint:disable-next-line:max-line-length
|
||||
exports.NAME_START_CHAR = ":A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\uD800\uDC00-\uDB7F\uDFFF";
|
||||
exports.NAME_CHAR = "-" + exports.NAME_START_CHAR + ".0-9\u00B7\u0300-\u036F\u203F-\u2040";
|
||||
//
|
||||
// Regular expressions.
|
||||
//
|
||||
exports.CHAR_RE = new RegExp("^[" + exports.CHAR + "]$", "u");
|
||||
exports.RESTRICTED_CHAR_RE = new RegExp("^[" + exports.RESTRICTED_CHAR + "]$", "u");
|
||||
exports.S_RE = new RegExp("^[" + exports.S + "]+$", "u");
|
||||
exports.NAME_START_CHAR_RE = new RegExp("^[" + exports.NAME_START_CHAR + "]$", "u");
|
||||
exports.NAME_CHAR_RE = new RegExp("^[" + exports.NAME_CHAR + "]$", "u");
|
||||
exports.NAME_RE = new RegExp("^[" + exports.NAME_START_CHAR + "][" + exports.NAME_CHAR + "]*$", "u");
|
||||
exports.NMTOKEN_RE = new RegExp("^[" + exports.NAME_CHAR + "]+$", "u");
|
||||
var TAB = 9;
|
||||
var NL = 0xA;
|
||||
var CR = 0xD;
|
||||
var SPACE = 0x20;
|
||||
//
|
||||
// Lists.
|
||||
//
|
||||
/** All characters in the ``S`` production. */
|
||||
exports.S_LIST = [SPACE, NL, CR, TAB];
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``CHAR`` production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``CHAR``.
|
||||
*/
|
||||
function isChar(c) {
|
||||
return (c >= 0x0001 && c <= 0xD7FF) ||
|
||||
(c >= 0xE000 && c <= 0xFFFD) ||
|
||||
(c >= 0x10000 && c <= 0x10FFFF);
|
||||
}
|
||||
exports.isChar = isChar;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``RESTRICTED_CHAR`` production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``RESTRICTED_CHAR``.
|
||||
*/
|
||||
function isRestrictedChar(c) {
|
||||
return (c >= 0x1 && c <= 0x8) ||
|
||||
c === 0xB ||
|
||||
c === 0xC ||
|
||||
(c >= 0xE && c <= 0x1F) ||
|
||||
(c >= 0x7F && c <= 0x84) ||
|
||||
(c >= 0x86 && c <= 0x9F);
|
||||
}
|
||||
exports.isRestrictedChar = isRestrictedChar;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``CHAR`` production and does not
|
||||
* match the ``RESTRICTED_CHAR`` production. ``isCharAndNotRestricted(x)`` is
|
||||
* equivalent to ``isChar(x) && !isRestrictedChar(x)``. This function is faster
|
||||
* than running the two-call equivalent.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``CHAR`` and does not match
|
||||
* ``RESTRICTED_CHAR``.
|
||||
*/
|
||||
function isCharAndNotRestricted(c) {
|
||||
return (c === 0x9) ||
|
||||
(c === 0xA) ||
|
||||
(c === 0xD) ||
|
||||
(c > 0x1F && c < 0x7F) ||
|
||||
(c === 0x85) ||
|
||||
(c > 0x9F && c <= 0xD7FF) ||
|
||||
(c >= 0xE000 && c <= 0xFFFD) ||
|
||||
(c >= 0x10000 && c <= 0x10FFFF);
|
||||
}
|
||||
exports.isCharAndNotRestricted = isCharAndNotRestricted;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``S`` (space) production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``S``.
|
||||
*/
|
||||
function isS(c) {
|
||||
return c === SPACE || c === NL || c === CR || c === TAB;
|
||||
}
|
||||
exports.isS = isS;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``NAME_START_CHAR`` production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``NAME_START_CHAR``.
|
||||
*/
|
||||
// tslint:disable-next-line:cyclomatic-complexity
|
||||
function isNameStartChar(c) {
|
||||
return ((c >= 0x41 && c <= 0x5A) ||
|
||||
(c >= 0x61 && c <= 0x7A) ||
|
||||
c === 0x3A ||
|
||||
c === 0x5F ||
|
||||
c === 0x200C ||
|
||||
c === 0x200D ||
|
||||
(c >= 0xC0 && c <= 0xD6) ||
|
||||
(c >= 0xD8 && c <= 0xF6) ||
|
||||
(c >= 0x00F8 && c <= 0x02FF) ||
|
||||
(c >= 0x0370 && c <= 0x037D) ||
|
||||
(c >= 0x037F && c <= 0x1FFF) ||
|
||||
(c >= 0x2070 && c <= 0x218F) ||
|
||||
(c >= 0x2C00 && c <= 0x2FEF) ||
|
||||
(c >= 0x3001 && c <= 0xD7FF) ||
|
||||
(c >= 0xF900 && c <= 0xFDCF) ||
|
||||
(c >= 0xFDF0 && c <= 0xFFFD) ||
|
||||
(c >= 0x10000 && c <= 0xEFFFF));
|
||||
}
|
||||
exports.isNameStartChar = isNameStartChar;
|
||||
/**
|
||||
* Determines whether a codepoint matches the ``NAME_CHAR`` production.
|
||||
*
|
||||
* @param c The code point.
|
||||
*
|
||||
* @returns ``true`` if the codepoint matches ``NAME_CHAR``.
|
||||
*/
|
||||
function isNameChar(c) {
|
||||
return isNameStartChar(c) ||
|
||||
(c >= 0x30 && c <= 0x39) ||
|
||||
c === 0x2D ||
|
||||
c === 0x2E ||
|
||||
c === 0xB7 ||
|
||||
(c >= 0x0300 && c <= 0x036F) ||
|
||||
(c >= 0x203F && c <= 0x2040);
|
||||
}
|
||||
exports.isNameChar = isNameChar;
|
||||
//# sourceMappingURL=ed2.js.map
|
1
node_modules/xmlchars/xml/1.1/ed2.js.map
generated
vendored
Normal file
1
node_modules/xmlchars/xml/1.1/ed2.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"ed2.js","sourceRoot":"","sources":["../../../../src/xml/1.1/ed2.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;AAEH,EAAE;AACF,aAAa;AACb,EAAE;AACW,QAAA,IAAI,GAAG,qDAAgD,CAAC;AAExD,QAAA,eAAe,GAC1B,kEAAkE,CAAC;AAExD,QAAA,CAAC,GAAG,SAAS,CAAC;AAE3B,2CAA2C;AAC9B,QAAA,eAAe,GAAG,iLAA2K,CAAC;AAE9L,QAAA,SAAS,GACpB,MAAI,uBAAe,yCAAsC,CAAC;AAE5D,EAAE;AACF,uBAAuB;AACvB,EAAE;AAEW,QAAA,OAAO,GAAG,IAAI,MAAM,CAAC,OAAK,YAAI,OAAI,EAAE,GAAG,CAAC,CAAC;AAEzC,QAAA,kBAAkB,GAAG,IAAI,MAAM,CAAC,OAAK,uBAAe,OAAI,EAAE,GAAG,CAAC,CAAC;AAE/D,QAAA,IAAI,GAAG,IAAI,MAAM,CAAC,OAAK,SAAC,QAAK,EAAE,GAAG,CAAC,CAAC;AAEpC,QAAA,kBAAkB,GAAG,IAAI,MAAM,CAAC,OAAK,uBAAe,OAAI,EAAE,GAAG,CAAC,CAAC;AAE/D,QAAA,YAAY,GAAG,IAAI,MAAM,CAAC,OAAK,iBAAS,OAAI,EAAE,GAAG,CAAC,CAAC;AAEnD,QAAA,OAAO,GAAG,IAAI,MAAM,CAAC,OAAK,uBAAe,UAAK,iBAAS,QAAK,EAAE,GAAG,CAAC,CAAC;AAEnE,QAAA,UAAU,GAAG,IAAI,MAAM,CAAC,OAAK,iBAAS,QAAK,EAAE,GAAG,CAAC,CAAC;AAE/D,IAAM,GAAG,GAAG,CAAC,CAAC;AACd,IAAM,EAAE,GAAG,GAAG,CAAC;AACf,IAAM,EAAE,GAAG,GAAG,CAAC;AACf,IAAM,KAAK,GAAG,IAAI,CAAC;AAEnB,EAAE;AACF,SAAS;AACT,EAAE;AAEF,8CAA8C;AACjC,QAAA,MAAM,GAAG,CAAC,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC;AAE3C;;;;;;GAMG;AACH,SAAgB,MAAM,CAAC,CAAS;IAC9B,OAAO,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QACjC,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,OAAO,IAAI,CAAC,IAAI,QAAQ,CAAC,CAAC;AACpC,CAAC;AAJD,wBAIC;AAED;;;;;;GAMG;AACH,SAAgB,gBAAgB,CAAC,CAAS;IACxC,OAAO,CAAC,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,CAAC;QAC3B,CAAC,KAAK,GAAG;QACT,CAAC,KAAK,GAAG;QACT,CAAC,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,CAAC;QACvB,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;QACxB,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC;AAC7B,CAAC;AAPD,4CAOC;AAED;;;;;;;;;;GAUG;AACH,SAAgB,sBAAsB,CAAC,CAAS;IAC9C,OAAO,CAAC,CAAC,KAAK,GAAG,CAAC;QAChB,CAAC,CAAC,KAAK,GAAG,CAAC;QACX,CAAC,CAAC,KAAK,GAAG,CAAC;QACX,CAAC,CAAC,GAAG,IAAI,IAAI,CAAC,GAAG,IAAI,CAAC;QACtB,CAAC,CAAC,KAAK,IAAI,CAAC;QACZ,CAAC,CAAC,GAAG,IAAI,IAAI,CAAC,IAAI,MAAM,CAAC;QACzB,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,OAAO,IAAI,CAAC,IAAI,QAAQ,CAAC,CAAC;AACpC,CAAC;AATD,wDASC;AAED;;;;;;GAMG;AACH,SAAgB,GAAG,CAAC,CAAS;IAC3B,OAAO,CAAC,KAAK,KAAK,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,GAAG,CAAC;AAC1D,CAAC;AAFD,kBAEC;AAED;;;;;;GAMG;AACH,iDAAiD;AACjD,SAAgB,eAAe,CAAC,CAAS;IACvC,OAAO,CAAC,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;QACxB,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;QACxB,CAAC,KAAK,IAAI;QACV,CAAC,KAAK,IAAI;QACV,CAAC,KAAK,MAAM;QACZ,CAAC,KAAK,MAAM;QACZ,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;QACxB,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;QACxB,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,OAAO,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC;AAC1C,CAAC;AAlBD,0CAkBC;AAED;;;;;;GAMG;AACH,SAAgB,UAAU,CAAC,CAAS;IAClC,OAAO,eAAe,CAAC,CAAC,CAAC;QACvB,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;QACxB,CAAC,KAAK,IAAI;QACV,CAAC,KAAK,IAAI;QACV,CAAC,KAAK,IAAI;QACV,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;QAC5B,CAAC,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC,CAAC;AACjC,CAAC;AARD,gCAQC"}
|
Reference in New Issue
Block a user