4 lines
107 B
JavaScript
Raw Permalink Normal View History

"use strict";
module.exports = function (value) { return typeof value === "number" && isFinite(value); };