chore: add node_modules dependencies

- Add all npm dependencies for the project

🤖 Generated with [Qoder](https://qoder.com)
This commit is contained in:
yuantao
2026-03-27 15:37:13 +08:00
parent 84bb32d5d4
commit 1b742b91b5
3460 changed files with 1479079 additions and 0 deletions

25
node_modules/ajv/lib/dot/pattern.jst generated vendored Normal file
View File

@@ -0,0 +1,25 @@
{{# def.definitions }}
{{# def.errors }}
{{# def.setupKeyword }}
{{# def.$data }}
{{
var $regExpCode = it.opts.regExp ? 'regExp' : 'new RegExp';
}}
{{? $isData }}
var {{=$valid}} = true;
try {
{{=$valid}} = {{=$regExpCode}}({{=$schemaValue}}).test({{=$data}});
} catch(e) {
{{=$valid}} = false;
}
if ({{# def.$dataNotType:'string' }} !{{=$valid}}) {
{{??}}
{{
var $regexp = it.usePattern($schema);
}}
if ({{# def.$dataNotType:'string' }} !{{=$regexp}}.test({{=$data}}) ) {
{{?}}
{{# def.error:'pattern' }}
} {{? $breakOnError }} else { {{?}}