UNPKG

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

12 lines (9 loc) 346 B
'use strict'; require('../../modules/es.promise'); require('../../modules/es.promise.all-settled'); var path = require('../../internals/path'); var Promise = path.Promise; var $allSettled = Promise.allSettled; module.exports = function allSettled(iterable) { return $allSettled.call(typeof this === 'function' ? this : Promise, iterable); };