UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

13 lines (10 loc) 193 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; } };