This commit is contained in:
2024-03-22 03:47:51 +05:30
parent 8bcf3d211e
commit 89819f6fe2
28440 changed files with 3211033 additions and 2 deletions

20
node_modules/html-entities/lib/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,20 @@
export declare type Level = 'xml' | 'html4' | 'html5' | 'all';
interface CommonOptions {
level?: Level;
}
export declare type EncodeMode = 'specialChars' | 'nonAscii' | 'nonAsciiPrintable' | 'nonAsciiPrintableOnly' | 'extensive';
export interface EncodeOptions extends CommonOptions {
mode?: EncodeMode;
numeric?: 'decimal' | 'hexadecimal';
}
export declare type DecodeScope = 'strict' | 'body' | 'attribute';
export interface DecodeOptions extends CommonOptions {
scope?: DecodeScope;
}
/** Encodes all the necessary (specified by `level`) characters in the text */
export declare function encode(text: string | undefined | null, { mode, numeric, level }?: EncodeOptions): string;
/** Decodes a single entity */
export declare function decodeEntity(entity: string | undefined | null, { level }?: CommonOptions): string;
/** Decodes all entities in the text */
export declare function decode(text: string | undefined | null, { level, scope }?: DecodeOptions): string;
export {};

2
node_modules/html-entities/lib/index.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
"use strict";var __assign=this&&this.__assign||function(){__assign=Object.assign||function(t){for(var s,i=1,n=arguments.length;i<n;i++){s=arguments[i];for(var p in s)if(Object.prototype.hasOwnProperty.call(s,p))t[p]=s[p]}return t};return __assign.apply(this,arguments)};Object.defineProperty(exports,"__esModule",{value:true});var named_references_1=require("./named-references");var numeric_unicode_map_1=require("./numeric-unicode-map");var surrogate_pairs_1=require("./surrogate-pairs");var allNamedReferences=__assign(__assign({},named_references_1.namedReferences),{all:named_references_1.namedReferences.html5});function replaceUsingRegExp(macroText,macroRegExp,macroReplacer){macroRegExp.lastIndex=0;var replaceMatch=macroRegExp.exec(macroText);var replaceResult;if(replaceMatch){replaceResult="";var replaceLastIndex=0;do{if(replaceLastIndex!==replaceMatch.index){replaceResult+=macroText.substring(replaceLastIndex,replaceMatch.index)}var replaceInput=replaceMatch[0];replaceResult+=macroReplacer(replaceInput);replaceLastIndex=replaceMatch.index+replaceInput.length}while(replaceMatch=macroRegExp.exec(macroText));if(replaceLastIndex!==macroText.length){replaceResult+=macroText.substring(replaceLastIndex)}}else{replaceResult=macroText}return replaceResult}var encodeRegExps={specialChars:/[<>'"&]/g,nonAscii:/[<>'"&\u0080-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/g,nonAsciiPrintable:/[<>'"&\x01-\x08\x11-\x15\x17-\x1F\x7f-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/g,nonAsciiPrintableOnly:/[\x01-\x08\x11-\x15\x17-\x1F\x7f-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/g,extensive:/[\x01-\x0c\x0e-\x1f\x21-\x2c\x2e-\x2f\x3a-\x40\x5b-\x60\x7b-\x7d\x7f-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/g};var defaultEncodeOptions={mode:"specialChars",level:"all",numeric:"decimal"};function encode(text,_a){var _b=_a===void 0?defaultEncodeOptions:_a,_c=_b.mode,mode=_c===void 0?"specialChars":_c,_d=_b.numeric,numeric=_d===void 0?"decimal":_d,_e=_b.level,level=_e===void 0?"all":_e;if(!text){return""}var encodeRegExp=encodeRegExps[mode];var references=allNamedReferences[level].characters;var isHex=numeric==="hexadecimal";return replaceUsingRegExp(text,encodeRegExp,(function(input){var result=references[input];if(!result){var code=input.length>1?surrogate_pairs_1.getCodePoint(input,0):input.charCodeAt(0);result=(isHex?"&#x"+code.toString(16):"&#"+code)+";"}return result}))}exports.encode=encode;var defaultDecodeOptions={scope:"body",level:"all"};var strict=/&(?:#\d+|#[xX][\da-fA-F]+|[0-9a-zA-Z]+);/g;var attribute=/&(?:#\d+|#[xX][\da-fA-F]+|[0-9a-zA-Z]+)[;=]?/g;var baseDecodeRegExps={xml:{strict:strict,attribute:attribute,body:named_references_1.bodyRegExps.xml},html4:{strict:strict,attribute:attribute,body:named_references_1.bodyRegExps.html4},html5:{strict:strict,attribute:attribute,body:named_references_1.bodyRegExps.html5}};var decodeRegExps=__assign(__assign({},baseDecodeRegExps),{all:baseDecodeRegExps.html5});var fromCharCode=String.fromCharCode;var outOfBoundsChar=fromCharCode(65533);var defaultDecodeEntityOptions={level:"all"};function getDecodedEntity(entity,references,isAttribute,isStrict){var decodeResult=entity;var decodeEntityLastChar=entity[entity.length-1];if(isAttribute&&decodeEntityLastChar==="="){decodeResult=entity}else if(isStrict&&decodeEntityLastChar!==";"){decodeResult=entity}else{var decodeResultByReference=references[entity];if(decodeResultByReference){decodeResult=decodeResultByReference}else if(entity[0]==="&"&&entity[1]==="#"){var decodeSecondChar=entity[2];var decodeCode=decodeSecondChar=="x"||decodeSecondChar=="X"?parseInt(entity.substr(3),16):parseInt(entity.substr(2));decodeResult=decodeCode>=1114111?outOfBoundsChar:decodeCode>65535?surrogate_pairs_1.fromCodePoint(decodeCode):fromCharCode(numeric_unicode_map_1.numericUnicodeMap[decodeCode]||decodeCode)}}return decodeResult}function decodeEntity(entity,_a){var _b=(_a===void 0?defaultDecodeEntityOptions:_a).level,level=_b===void 0?"all":_b;if(!entity){return""}return getDecodedEntity(entity,allNamedReferences[level].entities,false,false)}exports.decodeEntity=decodeEntity;function decode(text,_a){var _b=_a===void 0?defaultDecodeOptions:_a,_c=_b.level,level=_c===void 0?"all":_c,_d=_b.scope,scope=_d===void 0?level==="xml"?"strict":"body":_d;if(!text){return""}var decodeRegExp=decodeRegExps[level][scope];var references=allNamedReferences[level].entities;var isAttribute=scope==="attribute";var isStrict=scope==="strict";return replaceUsingRegExp(text,decodeRegExp,(function(entity){return getDecodedEntity(entity,references,isAttribute,isStrict)}))}exports.decode=decode;
//# sourceMappingURL=./index.js.map

52
node_modules/html-entities/lib/index.js.flow generated vendored Normal file
View File

@@ -0,0 +1,52 @@
/**
* Flowtype definitions for index
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.13.0
* @flow
*/
export type Level = "xml" | "html4" | "html5" | "all";
declare interface CommonOptions {
level?: Level;
}
export type EncodeMode =
| "specialChars"
| "nonAscii"
| "nonAsciiPrintable"
| "nonAsciiPrintableOnly"
| "extensive";
export type EncodeOptions = {
mode?: EncodeMode,
numeric?: "decimal" | "hexadecimal",
...
} & CommonOptions;
export type DecodeScope = "strict" | "body" | "attribute";
export type DecodeOptions = {
scope?: DecodeScope,
...
} & CommonOptions;
/**
* Encodes all the necessary (specified by `level`) characters in the text
*/
declare export function encode(
text: string | void | null,
x?: EncodeOptions
): string;
/**
* Decodes a single entity
*/
declare export function decodeEntity(
entity: string | void | null,
x?: CommonOptions
): string;
/**
* Decodes all entities in the text
*/
declare export function decode(
text: string | void | null,
x?: DecodeOptions
): string;
declare export {};

1
node_modules/html-entities/lib/index.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"./index.js.map","names":["named_references_1","require","numeric_unicode_map_1","surrogate_pairs_1","allNamedReferences","__assign","namedReferences","all","html5","replaceUsingRegExp","macroText","macroRegExp","macroReplacer","lastIndex","replaceMatch","exec","replaceResult","replaceLastIndex","index","substring","replaceInput","length","encodeRegExps","specialChars","nonAscii","nonAsciiPrintable","nonAsciiPrintableOnly","extensive","defaultEncodeOptions","mode","level","numeric","encode","text","_a","_b","_c","_d","_e","encodeRegExp","references","characters","isHex","input","result","code","getCodePoint","charCodeAt","toString","exports","defaultDecodeOptions","scope","strict","attribute","baseDecodeRegExps","xml","body","bodyRegExps","html4","decodeRegExps","fromCharCode","String","outOfBoundsChar","defaultDecodeEntityOptions","getDecodedEntity","entity","isAttribute","isStrict","decodeResult","decodeEntityLastChar","decodeResultByReference","decodeSecondChar","decodeCode","parseInt","substr","fromCodePoint","numericUnicodeMap","decodeEntity","entities","decode","decodeRegExp"],"sources":["../src/index.ts"],"mappings":"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"}

2
node_modules/html-entities/lib/named-references.js generated vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.numericUnicodeMap={0:65533,128:8364,130:8218,131:402,132:8222,133:8230,134:8224,135:8225,136:710,137:8240,138:352,139:8249,140:338,142:381,145:8216,146:8217,147:8220,148:8221,149:8226,150:8211,151:8212,152:732,153:8482,154:353,155:8250,156:339,158:382,159:376};
//# sourceMappingURL=./numeric-unicode-map.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"./numeric-unicode-map.js.map","names":["exports","numericUnicodeMap"],"sources":["../src/numeric-unicode-map.ts"],"mappings":"sEAAaA,QAAAC,kBAA4C,CACrD,EAAG,MACH,IAAK,KACL,IAAK,KACL,IAAK,IACL,IAAK,KACL,IAAK,KACL,IAAK,KACL,IAAK,KACL,IAAK,IACL,IAAK,KACL,IAAK,IACL,IAAK,KACL,IAAK,IACL,IAAK,IACL,IAAK,KACL,IAAK,KACL,IAAK,KACL,IAAK,KACL,IAAK,KACL,IAAK,KACL,IAAK,KACL,IAAK,IACL,IAAK,KACL,IAAK,IACL,IAAK,KACL,IAAK,IACL,IAAK,IACL,IAAK"}

2
node_modules/html-entities/lib/surrogate-pairs.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.fromCodePoint=String.fromCodePoint||function(astralCodePoint){return String.fromCharCode(Math.floor((astralCodePoint-65536)/1024)+55296,(astralCodePoint-65536)%1024+56320)};exports.getCodePoint=String.prototype.codePointAt?function(input,position){return input.codePointAt(position)}:function(input,position){return(input.charCodeAt(position)-55296)*1024+input.charCodeAt(position+1)-56320+65536};exports.highSurrogateFrom=55296;exports.highSurrogateTo=56319;
//# sourceMappingURL=./surrogate-pairs.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"./surrogate-pairs.js.map","names":["exports","fromCodePoint","String","astralCodePoint","fromCharCode","Math","floor","getCodePoint","prototype","codePointAt","input","position","charCodeAt","highSurrogateFrom","highSurrogateTo"],"sources":["../src/surrogate-pairs.ts"],"mappings":"sEAAaA,QAAAC,cACTC,OAAOD,eACP,SAAUE,iBACN,OAAOD,OAAOE,aACVC,KAAKC,OAAOH,gBAAkB,OAAW,MAAS,OAChDA,gBAAkB,OAAW,KAAS,MAEhD,EAESH,QAAAO,aAAeL,OAAOM,UAAUC,YACvC,SAAUC,MAAeC,UACrB,OAAOD,MAAMD,YAAYE,SAC7B,EACA,SAAUD,MAAeC,UACrB,OAAQD,MAAME,WAAWD,UAAY,OAAU,KAAQD,MAAME,WAAWD,SAAW,GAAK,MAAS,KACrG,EAEOX,QAAAa,kBAAoB,MACpBb,QAAAc,gBAAkB"}