# use-wednesday

> React Hook for checking if it is Wednesday, my dudes.

Latest version **1.0.0** (published 2019-06-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install use-wednesday
pnpm add use-wednesday
yarn add use-wednesday
bun add use-wednesday
```

## 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.0.0 |
| Published | 2019-06-26 |
| First published | 2019-06-26 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 5.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Jamie McElwain |
| Maintainers | jgmcelwain |

## Links

- npm: https://www.npmjs.com/package/use-wednesday
- Repository: https://github.com/jgmcelwain/use-wednesday
- Homepage: https://github.com/jgmcelwain/use-wednesday#readme
- Issues: https://github.com/jgmcelwain/use-wednesday/issues
- npm.io page: https://npm.io/package/use-wednesday

## Dependencies (1)

- [use-interval](https://npm.io/package/use-interval.md) ^1.1.0

## Recent versions

- 1.0.0 (latest) — 2019-06-26

## README

# use-wednesday

> React Hook for checking if it is Wednesday, my dudes.

[![NPM](https://img.shields.io/npm/v/use-wednesday.svg)](https://www.npmjs.com/package/use-wednesday)

## Install

```bash
yarn add use-wednesday
```

## Usage

```js
import React from 'react';
import useWednesday from 'use-wednesday';

const config = { precision: 4 };
const Example = () => {
  const { wednesday } = useWednesday(config);

  return (
    <h1>{wednesday ? 'It is Wednesday, my dudes.' : 'Not Wednesday. :('}</h1>
  );
}
```

```js
// config 
{
  precision: Number /* optional. number of times, per second, to check if it is Wednesday */
}
```

## License

MIT

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