done connecting coze and youwei

This commit is contained in:
Ebenezer
2026-03-27 17:05:01 +08:00
parent d5c75c9f5c
commit 592c503b5a
1157 changed files with 186944 additions and 31 deletions

19
backend/node_modules/es-errors/test/index.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
'use strict';
var test = require('tape');
var E = require('../');
var R = require('../range');
var Ref = require('../ref');
var S = require('../syntax');
var T = require('../type');
test('errors', function (t) {
t.equal(E, Error);
t.equal(R, RangeError);
t.equal(Ref, ReferenceError);
t.equal(S, SyntaxError);
t.equal(T, TypeError);
t.end();
});