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

13 lines (12 loc) 385 B
/** PURE_IMPORTS_START _util_not,_filter PURE_IMPORTS_END */ import { not } from '../util/not'; import { filter } from './filter'; export function partition(predicate, thisArg) { return function (source) { return [ filter(predicate, thisArg)(source), filter(not(predicate, thisArg))(source) ]; }; } //# sourceMappingURL=partition.js.map