First commit

This commit is contained in:
Aravind142857
2023-06-05 20:06:13 -05:00
commit 4e3c08d1c4
672 changed files with 179969 additions and 0 deletions

21
node_modules/saslprep/lib/util.js generated vendored Normal file
View File

@@ -0,0 +1,21 @@
'use strict';
/**
* Create an array of numbers.
* @param {number} from
* @param {number} to
* @returns {number[]}
*/
function range(from, to) {
// TODO: make this inlined.
const list = new Array(to - from + 1);
for (let i = 0; i < list.length; i += 1) {
list[i] = from + i;
}
return list;
}
module.exports = {
range,
};