UNPKG

@thangk/easythemer

Version:

Easily generate shades from a colour palette for use in your app

9 lines (7 loc) 264 B
export default function isNumber(input: any): boolean { if (typeof input !== "number" && typeof input !== "string") { return false; } input = typeof input !== "number" ? Number(input) : input; return input < 0 || input >= 0; }