Blame view

node_modules/es5-ext/date/valid-date.js 184 Bytes
ce4c83ff   wxy   初始提交
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;
  };