.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / ccount / readme.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/ccount/readme.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/ccount/readme.md
new file mode 100644 (file)
index 0000000..f3e41a9
--- /dev/null
@@ -0,0 +1,68 @@
+# 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