UNPKG

vant

Version:

Mobile UI Components built on Vue

18 lines (13 loc) 309 B
"use strict"; exports.__esModule = true; exports.isNumeric = isNumeric; exports.isNaN = isNaN; function isNumeric(val) { return /^\d+(\.\d+)?$/.test(val); } function isNaN(val) { if (Number.isNaN) { return Number.isNaN(val); } // eslint-disable-next-line no-self-compare return val !== val; }