function isNumeric()

in src/htmltojsx.js [266:270]


function isNumeric(input) {
  return input !== undefined
    && input !== null
    && (typeof input === 'number' || parseInt(input, 10) == input);
}