mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-19 12:38:34 -05:00
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
"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;
|
|
};
|