# is-name

> Checks if the given string contains a human name

Latest version **1.0.0** (published 2021-07-15) · MIT license · 0 weekly downloads

## Install

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

## 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 | 2021-07-15 |
| First published | 2021-07-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Sebastian Korotkiewicz |
| Maintainers | skorotkiewicz |
| Keywords | check, human, name |

## Links

- npm: https://www.npmjs.com/package/is-name
- Repository: https://github.com/skorotkiewicz/is-name
- Homepage: https://github.com/skorotkiewicz/is-name#readme
- Issues: https://github.com/skorotkiewicz/is-name/issues
- npm.io page: https://npm.io/package/is-name

## Alternatives

- [base64url](https://npm.io/package/base64url.md) — 6.1M weekly downloads
- [get-installed-path](https://npm.io/package/get-installed-path.md) — 502.9K weekly downloads
- [@uppy/url](https://npm.io/package/@uppy/url.md) — 185.8K weekly downloads
- [@d3fc/d3fc-shape](https://npm.io/package/@d3fc/d3fc-shape.md) — 16.2K weekly downloads
- [localizer](https://npm.io/package/localizer.md) — 226 weekly downloads

## Recent versions

- 1.0.0 (latest) — 2021-07-15

## README

# is-name

> Checks if the given string contains a human name

## Install

```sh
$ npm install is-name
// or
$ yarn add is-name
```

## Import

```javascript
const { isName, matchName } = require("is-name");
```

## Usage

```javascript
isName("Sebastian Peter Korotkiewicz"); // boolean: true
isName("Sebastian Korotkiewicz"); // boolean: true
isName("Apple"); // boolean: false

matchName("Hello I'm Sebastian Peter Korotkiewicz and you?");
// array: [ 'Sebastian Peter Korotkiewicz' ]

matchName("Hello I'm Sebastian Korotkiewicz and you?");
// array: [ 'Sebastian Korotkiewicz' ]
```

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