# is-date-object

> Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.

Latest version **1.1.0** (published 2024-12-13) · MIT license · 0 weekly downloads

> **Better alternative:** Use v instanceof Date, or if cross-realm, use Object.prototype.toString.call(v) === "[object Date]" — Consider using a lighter alternative

## Install

```sh
npm install is-date-object
pnpm add is-date-object
yarn add is-date-object
bun add is-date-object
```

## Health

**Score 50/100 (C)** — status: stable.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2024-12-13 |
| First published | 2015-01-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >= 0.4 |
| Dependencies | 2 |
| Unpacked size | 23.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 16 |
| Author | Jordan Harband |
| Maintainers | ljharb |
| Keywords | Date, ES6, toStringTag, @@toStringTag, Date object |

## Links

- npm: https://www.npmjs.com/package/is-date-object
- Repository: https://github.com/inspect-js/is-date-object
- Homepage: https://github.com/inspect-js/is-date-object#readme
- Issues: https://github.com/inspect-js/is-date-object/issues
- Funding: https://github.com/sponsors/ljharb
- npm.io page: https://npm.io/package/is-date-object

## Dependencies (2)

- [call-bound](https://npm.io/package/call-bound.md) ^1.0.2
- [has-tostringtag](https://npm.io/package/has-tostringtag.md) ^1.0.2

## Alternatives

- [@js-joda/timezone](https://npm.io/package/@js-joda/timezone.md) — 383.4K weekly downloads
- [chartjs-adapter-moment](https://npm.io/package/chartjs-adapter-moment.md) — 210.8K weekly downloads
- [strftime](https://npm.io/package/strftime.md) — 171.2K weekly downloads
- [vue-flatpickr-component](https://npm.io/package/vue-flatpickr-component.md) — 115.8K weekly downloads
- [timepicker](https://npm.io/package/timepicker.md) — 51.0K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2024-12-13
- 1.0.5 — 2021-08-05
- 1.0.4 — 2021-05-08
- 1.0.3 — 2021-05-05
- 1.0.2 — 2019-12-19
- 1.0.1 — 2015-09-27
- 1.0.0 — 2015-01-28

## README

# is-date-object <sup>[![Version Badge][2]][1]</sup>

[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![dependency status][5]][6]
[![dev dependency status][7]][8]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]

[![npm badge][11]][1]

Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.

## Example

```js
var isDate = require('is-date-object');
var assert = require('assert');

assert.notOk(isDate(undefined));
assert.notOk(isDate(null));
assert.notOk(isDate(false));
assert.notOk(isDate(true));
assert.notOk(isDate(42));
assert.notOk(isDate('foo'));
assert.notOk(isDate(function () {}));
assert.notOk(isDate([]));
assert.notOk(isDate({}));
assert.notOk(isDate(/a/g));
assert.notOk(isDate(new RegExp('a', 'g')));

assert.ok(isDate(new Date()));
```

## Tests
Simply clone the repo, `npm install`, and run `npm test`

[1]: https://npmjs.org/package/is-date-object
[2]: https://versionbadg.es/inspect-js/is-date-object.svg
[5]: https://david-dm.org/inspect-js/is-date-object.svg
[6]: https://david-dm.org/inspect-js/is-date-object
[7]: https://david-dm.org/inspect-js/is-date-object/dev-status.svg
[8]: https://david-dm.org/inspect-js/is-date-object#info=devDependencies
[11]: https://nodei.co/npm/is-date-object.png?downloads=true&stars=true
[license-image]: https://img.shields.io/npm/l/is-date-object.svg
[license-url]: LICENSE
[downloads-image]: https://img.shields.io/npm/dm/is-date-object.svg
[downloads-url]: https://npm-stat.com/charts.html?package=is-date-object
[codecov-image]: https://codecov.io/gh/inspect-js/is-date-object/branch/main/graphs/badge.svg
[codecov-url]: https://app.codecov.io/gh/inspect-js/is-date-object/
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-date-object
[actions-url]: https://github.com/inspect-js/is-date-object/actions

---
_Source: https://npm.io/package/is-date-object · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
