luhn-generator
Version:
A generator of numbers that passes the validation of Luhn algorithm or Luhn formula, also known as the 'modulus 10' or 'mod 10' algorithm
15 lines (12 loc) • 532 B
JavaScript
import _getIterator from "@babel/runtime-corejs3/core-js/get-iterator";
import _isIterable from "@babel/runtime-corejs3/core-js/is-iterable";
import _Symbol from "@babel/runtime-corejs3/core-js/symbol";
export default function _iterableToArrayLimitLoose(arr, i) {
if (typeof _Symbol === "undefined" || !_isIterable(Object(arr))) return;
var _arr = [];
for (var _iterator = _getIterator(arr), _step; !(_step = _iterator.next()).done;) {
_arr.push(_step.value);
if (i && _arr.length === i) break;
}
return _arr;
}