UNPKG

@topgroup/diginext

Version:

A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.

6 lines (5 loc) 255 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isNumeric = void 0; const isNumeric = (num) => (typeof num === "number" || (typeof num === "string" && num.trim() !== "")) && !isNaN(num); exports.isNumeric = isNumeric;