![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/metras.v32.1/node_modules/ccount/ |
# ccount [![Build][build-badge]][build] [![Coverage][coverage-badge]][coverage] [![Downloads][downloads-badge]][downloads] [![Size][size-badge]][size] Count characters. ## Installation [npm][]: ```bash npm install ccount ``` ## Usage ```javascript 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