price-history/node_modules/@mongodb-js/saslprep/dist/util.js
2024-01-11 04:28:21 +05:30

12 lines
326 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.range = void 0;
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;
}
exports.range = range;
//# sourceMappingURL=util.js.map