UNPKG

react-epoch-picker

Version:

A React UI component for choosing an date epoch, starting zoomed out at millenniums and going down through the centuries, decades and years.

9 lines (8 loc) 204 B
/** * checks if a given value is a number * * @param {number} num */ export default function isNumber(num) { return typeof num === "number" && !isNaN(num) && num !== Math.abs(Infinity); }