Sha256: 88d3e6290599cd16e98b194542ba861628dd1a69eb71ff8ead651b306cd3197d

Contents?: true

Size: 1.26 KB

Versions: 23

Compression:

Stored size: 1.26 KB

Contents

# ccount

[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]

Count characters.

## Install

[npm][]:

```sh
npm install ccount
```

## Use

```js
var ccount = require('ccount')

ccount('foo(bar(baz)', '(') // => 2
ccount('foo(bar(baz)', ')') // => 1
```

## API

### `ccount(value, character)`

Get the total count of `character` in `value`.

###### Parameters

*   `value` (`string`) — Content, coerced to string
*   `character` (`string`) — Single character to look for

###### Returns

`number` — Number of times `character` occurred in `value`.

## License

[MIT][license] © [Titus Wormer][author]

<!-- Definitions -->

[build-badge]: https://img.shields.io/travis/wooorm/ccount.svg

[build]: https://travis-ci.org/wooorm/ccount

[coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/ccount.svg

[coverage]: https://codecov.io/github/wooorm/ccount

[downloads-badge]: https://img.shields.io/npm/dm/ccount.svg

[downloads]: https://www.npmjs.com/package/ccount

[size-badge]: https://img.shields.io/bundlephobia/minzip/ccount.svg

[size]: https://bundlephobia.com/result?p=ccount

[npm]: https://docs.npmjs.com/cli/install

[license]: license

[author]: https://wooorm.com

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trusty-cms-4.1.7 node_modules/ccount/readme.md
trusty-cms-4.1.6 node_modules/ccount/readme.md
trusty-cms-4.1.5 node_modules/ccount/readme.md