UNPKG

data-provider-temporary

Version:

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

9 lines (6 loc) 200 B
"use strict"; var isDate = require("./is-date"); module.exports = function (value) { if (!isDate(value) || isNaN(value)) throw new TypeError(value + " is not valid Date object"); return value; };