# is-its-over-9000

> Return true if given number is over 9000

Latest version **0.1.6** (published 2025-09-20) · WTFPL license · 0 weekly downloads

## Install

```sh
npm install is-its-over-9000
pnpm add is-its-over-9000
yarn add is-its-over-9000
bun add is-its-over-9000
```

## Health

**Score 45/100 (D)** — status: stable.

Positive: no vulnerabilities.

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

## Facts

| | |
|---|---|
| Version | 0.1.6 |
| Published | 2025-09-20 |
| First published | 2020-06-08 |
| Weekly downloads | 0 |
| License | WTFPL |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 49.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | saalimon |
| Maintainers | deduq |
| Keywords | count, filter, integer, is, 9000, over, numeric, string |

## Links

- npm: https://www.npmjs.com/package/is-its-over-9000
- Homepage: https://github.com/saalimon/is-its-over-9000
- npm.io page: https://npm.io/package/is-its-over-9000

## 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

- 0.1.6 (latest) — 2025-09-20
- 0.1.5 — 2020-06-09
- 0.1.4 — 2020-06-08
- 0.1.3 — 2020-06-08
- 0.1.2 — 2020-06-08
- 0.1.1 — 2020-06-08
- 0.1.0 — 2020-06-08

## README

# is-its-over-9000

![Meme](./meme.webp)

Return true if given number is over 9000

Installation and Usage
----------------------

is-its-over-9000 supports stable versions of Node.js 8.15.0 and later. You can install
is-its-over-9000 globally or in your project's `node_modules` folder.

To install the latest version on npm globally (might require `sudo`;
[learn how to fix this](https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally)):

    npm install -i is-its-over-9000


## Usage

```js
const isItsOver9000 = require("is-its-over-9000");

const num1 = 9999;
const num2 = 8000;

console.log(isItsOver9000(num1)); // true
console.log(isItsOver9000(num2)); // false
```

## Testing

Run the test suite:

```bash
npm test
```

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