Skip to content

Files

Latest commit

228dbef · Aug 19, 2023

History

History

is-date-object

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 27, 2022
Aug 19, 2023
May 5, 2021
Sep 23, 2022
Oct 10, 2022
Sep 6, 2021
May 5, 2021

README.md

isDateObject

Test if a value is a Date object.

Usage

var isDateObject = require( '@stdlib/assert/is-date-object' );

isDateObject( value )

Tests if a value is a Date object.

var bool = isDateObject( new Date() );
// returns true

bool = isDateObject( '2017-01-01' );
// returns false

Examples

var isDateObject = require( '@stdlib/assert/is-date-object' );

var bool = isDateObject( new Date() );
// returns true

bool = isDateObject( '2017-01-01' );
// returns false

bool = isDateObject( 5 );
// returns false

bool = isDateObject( null );
// returns false

bool = isDateObject( void 0 );
// returns false

bool = isDateObject( {} );
// returns false

bool = isDateObject( [] );
// returns false

bool = isDateObject( function Date() {} );
// returns false