# is-punctuation

> Returns true if the given string is punctuation characters.

Latest version **0.2.0** (published 2017-01-04) · MIT license · 0 weekly downloads

## Install

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

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.0 |
| Published | 2017-01-04 |
| First published | 2017-01-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Jon Schlinkert |
| Maintainers | jonschlinkert |
| Keywords | is, punctuation |

## Links

- npm: https://www.npmjs.com/package/is-punctuation
- Repository: https://github.com/jonschlinkert/is-punctuation
- Issues: https://github.com/jonschlinkert/is-punctuation/issues
- npm.io page: https://npm.io/package/is-punctuation

## Dependencies (1)

- [punctuation-regex](https://npm.io/package/punctuation-regex.md) ^0.2.0

## 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.2.0 (latest) — 2017-01-04
- 0.1.0 — 2017-01-04

## README

# is-punctuation [![NPM version](https://img.shields.io/npm/v/is-punctuation.svg?style=flat)](https://www.npmjs.com/package/is-punctuation) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-punctuation.svg?style=flat)](https://npmjs.org/package/is-punctuation)  [![NPM total downloads](https://img.shields.io/npm/dt/is-punctuation.svg?style=flat)](https://npmjs.org/package/is-punctuation) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-punctuation.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-punctuation)

> Returns true if the given string is punctuation characters.

## Install

Install with [npm](https://www.npmjs.com/):

```sh
$ npm install --save is-punctuation
```

See the [wikipedia punctuation](https://en.wikipedia.org/wiki/Punctuation) article for more details.

## Usage

```js
var isPunctuation = require('is-punctuation');
console.log(isPunctuation('!'));
//=> true
console.log(isPunctuation('foo'));
//=> false
```

## About

### Related projects

* [is-extglob](https://www.npmjs.com/package/is-extglob): Returns true if a string has an extglob. | [homepage](https://github.com/jonschlinkert/is-extglob "Returns true if a string has an extglob.")
* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern or an extglob pattern… [more](https://github.com/jonschlinkert/is-glob) | [homepage](https://github.com/jonschlinkert/is-glob "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet")
* [punctuation-regex](https://www.npmjs.com/package/punctuation-regex): Regular expression for matching punctuation characters. | [homepage](https://github.com/regexhq/punctuation-regex "Regular expression for matching punctuation characters.")

### Contributing

Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).

Please read the [contributing guide](.github/contributing.md) for avice on opening issues, pull requests, and coding standards.

### Building docs

_(This document was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme) (a [verb](https://github.com/verbose/verb) generator), please don't edit the readme directly. Any changes to the readme must be made in [.verb.md](.verb.md).)_

To generate the readme and API documentation with [verb](https://github.com/verbose/verb):

```sh
$ npm install -g verb verb-generate-readme && verb
```

### Running tests

Install dev dependencies:

```sh
$ npm install -d && npm test
```

### Author

**Jon Schlinkert**

* [github/jonschlinkert](https://github.com/jonschlinkert)
* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)

### License

Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
Released under the [MIT license](LICENSE).

***

_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.2.3, on January 04, 2017._

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