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

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/trim-trailing-lines/readme.md')
-rw-r--r--assets/node_modules/trim-trailing-lines/readme.md68
1 files changed, 0 insertions, 68 deletions
diff --git a/assets/node_modules/trim-trailing-lines/readme.md b/assets/node_modules/trim-trailing-lines/readme.md
deleted file mode 100644
index a9c1f44..0000000
--- a/assets/node_modules/trim-trailing-lines/readme.md
+++ /dev/null
@@ -1,68 +0,0 @@
-# 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