Newer
Older
vmk-demo-bot / frontend / node_modules / es5-ext / date / is-date.js
@eugene-sukhodolskiy eugene-sukhodolskiy 18 days ago 248 bytes init
"use strict";

var objToString = Object.prototype.toString, id = objToString.call(new Date());

module.exports = function (value) {
	return (
		(value && !isNaN(value) && (value instanceof Date || objToString.call(value) === id)) ||
		false
	);
};