UNPKG

@thi.ng/checks

Version:
7 lines (6 loc) 166 B
const isNumericInt = (x) => /^[-+]?\d+$/.test(x); const isNumericFloat = (x) => /^[-+]?\d*\.?\d+(e[-+]?\d+)?$/i.test(x); export { isNumericFloat, isNumericInt };