$ npm install is-date-obj
Check if an object is a Date object
Date
$ npm install --save is-date-obj
const isDateObj = require('is-date-obj'); isDateObj(new Date()); //=> true isDateObj({}); //=> false
Value to check if it's a Date object.
MIT © Kevin Martensson