Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/ccount/readme.md')
-rw-r--r--tools/eslint/node_modules/ccount/readme.md57
1 files changed, 57 insertions, 0 deletions
diff --git a/tools/eslint/node_modules/ccount/readme.md b/tools/eslint/node_modules/ccount/readme.md
new file mode 100644
index 00000000000..d773d12c8c5
--- /dev/null
+++ b/tools/eslint/node_modules/ccount/readme.md
@@ -0,0 +1,57 @@
+# ccount [![Build Status][travis-badge]][travis] [![Coverage Status][codecov-badge]][codecov]
+
+<!--lint disable heading-increment list-item-spacing-->
+
+Count characters.
+
+## Installation
+
+[npm][npm-install]:
+
+```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 -->
+
+[travis-badge]: https://img.shields.io/travis/wooorm/ccount.svg
+
+[travis]: https://travis-ci.org/wooorm/ccount
+
+[codecov-badge]: https://img.shields.io/codecov/c/github/wooorm/ccount.svg
+
+[codecov]: https://codecov.io/github/wooorm/ccount
+
+[npm-install]: https://docs.npmjs.com/cli/install
+
+[license]: LICENSE
+
+[author]: http://wooorm.com