UNPKG

lightfold

Version:

lightweight scaffolding and archiving utility CLI.

10 lines (7 loc) 188 B
"use strict"; var isValue = require("./is-value"); module.exports = function (value) { if (!isValue(value)) return false; try { return !isNaN(value); } catch (e) { return false; } };