UNPKG

sussy-util

Version:
10 lines (9 loc) 325 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Returns the provided value if it is a number, otherwise returns 0. * * @param {any} val - The value to check. * @returns {number|0} The provided value if it is a number, otherwise 0. */ exports.default = (val) => (isNaN(val) ? 0 : val);