is-tuesday
Version:
Determines if today is Tuesday or not.
14 lines (11 loc) • 621 B
Markdown
# is-tuesday
[](https://www.npmjs.com/package/is-tuesday)
[](https://www.npmjs.com/package/is-tuesday)
[](https://travis-ci.org/dragonfire535/is-tuesday)
is-tuesday is a simple module that determines if it's Tuesday or not. You can
also set the timezone offset, which defaults to `0` (UTC).
## Usage
```js
const isTuesday = require('is-tuesday');
isTuesday(0); // Returns true or false
```