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

14 lines (13 loc) 586 B
/** * Extractor function for a AssignmentExpression type value node. * An assignment expression looks like `x = y` or `x += y` in expression position. * This will return the assignment as the value. * * @param - value - AST Value object with type `AssignmentExpression` * @returns - The extracted value converted to correct type. */ export default function extractValueFromAssignmentExpression(value) { // eslint-disable-next-line global-require const getValue = require('./index.js').default; return `${getValue(value.left)} ${value.operator} ${getValue(value.right)}`; }