Express_Crud_Example/node_modules/saslprep/lib/util.js

22 lines
344 B
JavaScript
Raw Normal View History

2022-01-28 22:33:42 +01:00
'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,
};