blob: 0c73dc5d3565879fd9bfb786b9bdb8213beeaa33 (
plain)
1
2
3
4
5
6
7
8
|
"use strict";
var isDate = require("./is-date");
module.exports = function (value) {
if (!isDate(value)) throw new TypeError(value + " is not valid Date object");
return value;
};
|