This commit is contained in:
2026-03-31 18:30:49 +08:00
parent bad112803a
commit d777d3065d
557 changed files with 119933 additions and 2 deletions

11
backend/node_modules/@mongodb-js/saslprep/dist/util.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.range = range;
function range(from, to) {
const list = new Array(to - from + 1);
for (let i = 0; i < list.length; i += 1) {
list[i] = from + i;
}
return list;
}
//# sourceMappingURL=util.js.map