.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / trim-trailing-lines / readme.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/trim-trailing-lines/readme.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/trim-trailing-lines/readme.md
new file mode 100644 (file)
index 0000000..a9c1f44
--- /dev/null
@@ -0,0 +1,68 @@
+# trim-trailing-lines
+
+[![Build][build-badge]][build]
+[![Coverage][coverage-badge]][coverage]
+[![Downloads][downloads-badge]][downloads]
+[![Size][size-badge]][size]
+
+Remove final line feeds from a string.
+
+## Install
+
+[npm][]:
+
+```sh
+npm install trim-trailing-lines
+```
+
+## Use
+
+```js
+var trimTrailingLines = require('trim-trailing-lines')
+
+trimTrailingLines('foo\nbar') // => 'foo\nbar'
+trimTrailingLines('foo\nbar\n') // => 'foo\nbar'
+trimTrailingLines('foo\nbar\n\n') // => 'foo\nbar'
+```
+
+## API
+
+### `trimTrailingLines(value)`
+
+Remove final line feed characters from `value`.
+
+###### Parameters
+
+*   `value` (`string`) — Value with trailing line feeds, coerced to string.
+
+###### Returns
+
+`string` — Value without trailing newlines.
+
+## License
+
+[MIT][license] © [Titus Wormer][author]
+
+<!-- Definitions -->
+
+[build-badge]: https://img.shields.io/travis/wooorm/trim-trailing-lines.svg
+
+[build]: https://travis-ci.org/wooorm/trim-trailing-lines
+
+[coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/trim-trailing-lines.svg
+
+[coverage]: https://codecov.io/github/wooorm/trim-trailing-lines
+
+[downloads-badge]: https://img.shields.io/npm/dm/trim-trailing-lines.svg
+
+[downloads]: https://www.npmjs.com/package/trim-trailing-lines
+
+[size-badge]: https://img.shields.io/bundlephobia/minzip/trim-trailing-lines.svg
+
+[size]: https://bundlephobia.com/result?p=trim-trailing-lines
+
+[npm]: https://docs.npmjs.com/cli/install
+
+[license]: license
+
+[author]: https://wooorm.com