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

16 lines (14 loc) 289 B
/** * Determines if element is an instance of Node * @method isNode * @memberof axe.commons.dom * @instance * @deprecated * @param {Element} element * @return {Boolean} */ function isNode(element) { 'use strict'; return element instanceof window.Node; } export default isNode;