# is-date-obj **Repository Path**: mirrors_kevva/is-date-obj ## Basic Information - **Project Name**: is-date-obj - **Description**: Check if an object is a `Date` object - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # is-date-obj [![Build Status](https://travis-ci.org/kevva/is-date-obj.svg?branch=master)](https://travis-ci.org/kevva/is-date-obj) > Check if an object is a `Date` object ## Install ``` $ npm install --save is-date-obj ``` ## Usage ```js const isDateObj = require('is-date-obj'); isDateObj(new Date()); //=> true isDateObj({}); //=> false ``` ## API ### isDateObj(input) #### input Value to check if it's a `Date` object. ## License MIT © [Kevin Martensson](https://github.com/kevva)