# is-tomorrow

> Is the date tomorrow?

Latest version **1.1.0** (published 2020-01-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-tomorrow
pnpm add is-tomorrow
yarn add is-tomorrow
bun add is-tomorrow
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2020-01-20 |
| First published | 2020-01-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Bjarne Oeverli |
| Maintainers | bjarneo |
| Keywords | isTomorrow, is, tomorrow, day, tomorrow |

## Links

- npm: https://www.npmjs.com/package/is-tomorrow
- Repository: https://github.com/bjarneo/is-tomorrow
- Issues: https://github.com/bjarneo/is-tomorrow/issues
- npm.io page: https://npm.io/package/is-tomorrow

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2020-01-20
- 1.0.1 — 2020-01-20
- 1.0.0 — 2020-01-20

## README

# isTomorrow
Is your date tomorrow?


## WHY?
Because I really messed up the easy isTomorrow logic at work.


## Install

```
$ npm i --save is-tomorrow
```


## Usage

```js
import isTomorrow from 'is-tomorrow';

const today = new Date();
const tomorrow = new Date();
tomorrow.setDate(tomorrow.getDate() + 1);

isTomorrow(today); // false
isTomorrow(tomorrow); // true

```


## License

MIT © [Bjarne Øverli](https://oeverli.win)

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