.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / longest-streak / readme.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/longest-streak/readme.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/longest-streak/readme.md
new file mode 100644 (file)
index 0000000..80dfa26
--- /dev/null
@@ -0,0 +1,72 @@
+# longest-streak
+
+[![Build][build-badge]][build]
+[![Coverage][coverage-badge]][coverage]
+[![Downloads][downloads-badge]][downloads]
+[![Size][size-badge]][size]
+
+Count the longest repeating streak of a character.
+
+## Install
+
+[npm][]:
+
+```sh
+npm install longest-streak
+```
+
+## Use
+
+```js
+var longestStreak = require('longest-streak')
+
+longestStreak('` foo `` bar `', '`') // => 2
+```
+
+## API
+
+### `longestStreak(value, character)`
+
+Get the count of the longest repeating streak of `character` in `value`.
+
+###### Parameters
+
+*   `value` (`string`) — Content, coerced to string.
+*   `character` (`string`) — Single character to look for.
+
+###### Returns
+
+`number` — Number of characters at the place where `character` occurs in
+its longest streak in `value`.
+
+###### Throws
+
+*   `Error` — when `character` is not a single character string.
+
+## License
+
+[MIT][license] © [Titus Wormer][author]
+
+<!-- Definitions -->
+
+[build-badge]: https://img.shields.io/travis/wooorm/longest-streak.svg
+
+[build]: https://travis-ci.org/wooorm/longest-streak
+
+[coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/longest-streak.svg
+
+[coverage]: https://codecov.io/github/wooorm/longest-streak
+
+[downloads-badge]: https://img.shields.io/npm/dm/longest-streak.svg
+
+[downloads]: https://www.npmjs.com/package/longest-streak
+
+[size-badge]: https://img.shields.io/bundlephobia/minzip/longest-streak.svg
+
+[size]: https://bundlephobia.com/result?p=longest-streak
+
+[npm]: https://docs.npmjs.com/cli/install
+
+[license]: license
+
+[author]: https://wooorm.com