From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- node_modules/indent-string/readme.md | 72 ------------------------------------ 1 file changed, 72 deletions(-) delete mode 100644 node_modules/indent-string/readme.md (limited to 'node_modules/indent-string/readme.md') diff --git a/node_modules/indent-string/readme.md b/node_modules/indent-string/readme.md deleted file mode 100644 index d2592d73f..000000000 --- a/node_modules/indent-string/readme.md +++ /dev/null @@ -1,72 +0,0 @@ -# indent-string [![Build Status](https://travis-ci.org/sindresorhus/indent-string.svg?branch=master)](https://travis-ci.org/sindresorhus/indent-string) - -> Indent each line in a string - - -## Install - -``` -$ npm install indent-string -``` - - -## Usage - -```js -const indentString = require('indent-string'); - -indentString('Unicorns\nRainbows', 4); -//=> ' Unicorns' -//=> ' Rainbows' - -indentString('Unicorns\nRainbows', 4, {indent: '♥'}); -//=> '♥♥♥♥Unicorns' -//=> '♥♥♥♥Rainbows' -``` - - -## API - -### indentString(input, [count], [options]) - -#### input - -Type: `string` - -String you want to indent. - -#### count - -Type: `number`
-Default: `1` - -How many times you want `indent` repeated. - -#### options - -Type: `Object`
- -##### indent - -Type: `string`
-Default: `' '` - -String to use for the indent. - -##### includeEmptyLines - -Type: `boolean`
-Default: `false` - -Also indent empty lines. - - -## Related - -- [indent-string-cli](https://github.com/sindresorhus/indent-string-cli) - CLI for this module -- [strip-indent](https://github.com/sindresorhus/strip-indent) - Strip leading whitespace from every line in a string - - -## License - -MIT © [Sindre Sorhus](https://sindresorhus.com) -- cgit v1.2.3