# is-blob

> Check if a value is a `Blob`

Latest version **3.0.0** (published 2021-10-16) · MIT license · 0 weekly downloads

## Install

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

## Health

**Score 35/100 (D)** — status: abandoned.

Positive: esm support; no vulnerabilities; high maintenance score.

Warnings: low downloads; no types.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 3.0.0 |
| Published | 2021-10-16 |
| First published | 2015-10-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Node | ^12.20.0 \|\| ^14.13.1 \|\| >=16.0.0 |
| Dependencies | 0 |
| Unpacked size | 2.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 24 |
| Author | Sindre Sorhus |
| Maintainers | sindresorhus |
| Keywords | blob, object, file, raw, data, immutable, browser, check, detect, is, type |

## Links

- npm: https://www.npmjs.com/package/is-blob
- Repository: https://github.com/sindresorhus/is-blob
- Homepage: https://github.com/sindresorhus/is-blob#readme
- Issues: https://github.com/sindresorhus/is-blob/issues
- Funding: https://github.com/sponsors/sindresorhus
- npm.io page: https://npm.io/package/is-blob

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

- 3.0.0 (latest) — 2021-10-16
- 2.1.0 — 2019-11-26
- 2.0.1 — 2018-10-29
- 2.0.0 — 2018-10-24
- 1.0.0 — 2015-10-21

## README

# is-blob

> Check if a value is a [`Blob`](https://developer.mozilla.org/en/docs/Web/API/Blob) - File-like object of immutable, raw data

## Install

```sh
npm install is-blob
```

## Usage

```js
import isBlob from 'is-blob';

isBlob(new Blob(['<h1>Unicorns</h1>'], {type: 'text/html'}));
//=> true
```

## Related

- [is](https://github.com/sindresorhus/is) - Type check values

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