aboutsummaryrefslogtreecommitdiff
path: root/node_modules/align-text
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
committerFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
commitbbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch)
treec58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/align-text
parent003fb34971cf63466184351b4db5f7c67df4f444 (diff)
update packages
Diffstat (limited to 'node_modules/align-text')
-rw-r--r--node_modules/align-text/LICENSE21
-rw-r--r--node_modules/align-text/README.md236
-rw-r--r--node_modules/align-text/index.js52
-rw-r--r--node_modules/align-text/package.json52
4 files changed, 0 insertions, 361 deletions
diff --git a/node_modules/align-text/LICENSE b/node_modules/align-text/LICENSE
deleted file mode 100644
index 65f90aca8..000000000
--- a/node_modules/align-text/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2015, Jon Schlinkert.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
diff --git a/node_modules/align-text/README.md b/node_modules/align-text/README.md
deleted file mode 100644
index 476b97ff4..000000000
--- a/node_modules/align-text/README.md
+++ /dev/null
@@ -1,236 +0,0 @@
-# align-text [![NPM version](https://badge.fury.io/js/align-text.svg)](http://badge.fury.io/js/align-text) [![Build Status](https://travis-ci.org/jonschlinkert/align-text.svg)](https://travis-ci.org/jonschlinkert/align-text)
-
-> Align the text in a string.
-
-**Examples**
-
-Align text values in an array:
-
-```js
-align([1, 2, 3, 100]);
-//=> [' 1', ' 2', ' 3', '100']
-```
-
-Or [do stuff like this](./example.js):
-
-[![screen shot 2015-06-09 at 2 08 34 am](https://cloud.githubusercontent.com/assets/383994/8051597/7b716fbc-0e4c-11e5-9aef-4493fd22db58.png)](./example.js)
-
-Visit [the example](./example.js) to see how this works.
-
-## Install
-
-Install with [npm](https://www.npmjs.com/)
-
-```sh
-$ npm i align-text --save
-```
-
-## Usage
-
-```js
-var align = require('align-text');
-align(text, callback_function_or_integer);
-```
-
-**Params**
-
-* `text` can be a **string or array**. If a string is passed, a string will be returned. If an array is passed, an array will be returned.
-* `callback|integer`: if an integer, the text will be indented by that amount. If a function, it must return an integer representing the amount of leading indentation to use as `align` loops over each line.
-
-**Example**
-
-```js
-align(text, 4);
-```
-
-Would align:
-
-```
-abc
-abc
-abc
-```
-
-To:
-
-```
- abc
- abc
- abc
-```
-
-## callback
-
-### params
-
-The callback is used to determine the indentation of each line and gets the following params:
-
-* `len` the length of the "current" line
-* `longest` the length of the longest line
-* `line` the current line (string) being aligned
-* `lines` the array of all lines
-
-### return
-
-The callback may return:
-
-* an integer that represents the number of spaces to use for padding,
-* or an object with the following properties:
- - `indent`: **{Number}** the amount of indentation to use. Default is `0` when an object is returned.
- - `character`: **{String}** the character to use for indentation. Default is `''` (empty string) when an object is returned.
- - `prefix`: **{String}** leading characters to use at the beginning of each line. `''` (empty string) when an object is returned.
-
-**Integer example:**
-
-```js
-// calculate half the difference between the length
-// of the current line and the longest line
-function centerAlign(len, longest, line, lines) {
- return Math.floor((longest - len) / 2);
-}
-```
-
-**Object example:**
-
-```js
-function centerAlign(len, longest, line, lines) {
- return {
- character: '\t',
- indent: Math.floor((longest - len) / 2),
- prefix: '~ ',
- }
-}
-```
-
-## Usage examples
-
-### Center align
-
-Using the `centerAlign` function from above:
-
-```js
-align(text, centerAlign);
-```
-
-Would align this text:
-
-```js
-Lorem ipsum dolor sit amet
-consectetur adipiscin
-elit, sed do eiusmod tempor incididun
-ut labore et dolor
-magna aliqua. Ut enim ad mini
-veniam, quis
-```
-
-Resulting in this:
-
-```
- Lorem ipsum dolor sit amet,
- consectetur adipiscing
-elit, sed do eiusmod tempor incididunt
- ut labore et dolore
- magna aliqua. Ut enim ad minim
- veniam, quis
-```
-
-**Customize**
-
-If you wanted to add more padding on the left, just pass the number in the callback.
-
-For example, to add 4 spaces before every line:
-
-```js
-function centerAlign(len, longest, line, lines) {
- return 4 + Math.floor((longest - len) / 2);
-}
-```
-
-Would result in:
-
-```
- Lorem ipsum dolor sit amet,
- consectetur adipiscing
- elit, sed do eiusmod tempor incididunt
- ut labore et dolore
- magna aliqua. Ut enim ad minim
- veniam, quis
-```
-
-### Bullets
-
-```js
-align(text, function (len, max, line, lines) {
- return {prefix: ' - '};
-});
-```
-
-Would return:
-
-```
-- Lorem ipsum dolor sit amet,
-- consectetur adipiscing
-- elit, sed do eiusmod tempor incididunt
-- ut labore et dolore
-- magna aliqua. Ut enim ad minim
-- veniam, quis
-```
-
-### Different indent character
-
-```js
-align(text, function (len, max, line, lines) {
- return {
- indent: Math.floor((max - len) / 2),
- character: '~',
- };
-});
-```
-
-Would return
-
-```
-~~~~~Lorem ipsum dolor sit amet,
-~~~~~~~~consectetur adipiscing
-elit, sed do eiusmod tempor incididunt
-~~~~~~~~~ut labore et dolore
-~~~~magna aliqua. Ut enim ad minim
-~~~~~~~~~~~~~veniam, quis
-```
-
-## Related projects
-
-* [center-align](https://github.com/jonschlinkert/center-align): Center-align the text in a string.
-* [justify](https://github.com/bahamas10/node-justify): Left or right (or both) justify text using a custom width and character
-* [longest](https://github.com/jonschlinkert/longest): Get the longest item in an array.
-* [right-align](https://github.com/jonschlinkert/right-align): Right-align the text in a string.
-* [repeat-string](https://github.com/jonschlinkert/repeat-string): Repeat the given string n times. Fastest implementation for repeating a string.
-* [word-wrap](https://github.com/jonschlinkert/word-wrap): Wrap words to a specified length.
-
-## Running tests
-
-Install dev dependencies:
-
-```sh
-$ npm i -d && npm test
-```
-
-## Contributing
-
-Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/align-text/issues/new)
-
-## Author
-
-**Jon Schlinkert**
-
-+ [github/jonschlinkert](https://github.com/jonschlinkert)
-+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
-
-## License
-
-Copyright © 2015 [Jon Schlinkert](https://github.com/jonschlinkert)
-Released under the MIT license.
-
-***
-
-_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on June 09, 2015._
diff --git a/node_modules/align-text/index.js b/node_modules/align-text/index.js
deleted file mode 100644
index 75902a3f3..000000000
--- a/node_modules/align-text/index.js
+++ /dev/null
@@ -1,52 +0,0 @@
-/*!
- * align-text <https://github.com/jonschlinkert/align-text>
- *
- * Copyright (c) 2015, Jon Schlinkert.
- * Licensed under the MIT License.
- */
-
-'use strict';
-
-var typeOf = require('kind-of');
-var repeat = require('repeat-string');
-var longest = require('longest');
-
-module.exports = function alignText(val, fn) {
- var lines, type = typeOf(val);
-
- if (type === 'array') {
- lines = val;
- } else if (type === 'string') {
- lines = val.split(/(?:\r\n|\n)/);
- } else {
- throw new TypeError('align-text expects a string or array.');
- }
-
- var fnType = typeOf(fn);
- var len = lines.length;
- var max = longest(lines);
- var res = [], i = 0;
-
- while (len--) {
- var line = String(lines[i++]);
- var diff;
-
- if (fnType === 'function') {
- diff = fn(line.length, max.length, line, lines, i);
- } else if (fnType === 'number') {
- diff = fn;
- } else {
- diff = max.length - line.length;
- }
-
- if (typeOf(diff) === 'number') {
- res.push(repeat(' ', diff) + line);
- } else if (typeOf(diff) === 'object') {
- var result = repeat(diff.character || ' ', diff.indent || 0);
- res.push((diff.prefix || '') + result + line);
- }
- }
-
- if (type === 'array') return res;
- return res.join('\n');
-};
diff --git a/node_modules/align-text/package.json b/node_modules/align-text/package.json
deleted file mode 100644
index 10f49bb1e..000000000
--- a/node_modules/align-text/package.json
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- "name": "align-text",
- "description": "Align the text in a string.",
- "version": "0.1.4",
- "homepage": "https://github.com/jonschlinkert/align-text",
- "author": {
- "name": "Jon Schlinkert",
- "url": "https://github.com/jonschlinkert"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/jonschlinkert/align-text.git"
- },
- "bugs": {
- "url": "https://github.com/jonschlinkert/align-text/issues"
- },
- "license": "MIT",
- "files": [
- "index.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "dependencies": {
- "kind-of": "^3.0.2",
- "longest": "^1.0.1",
- "repeat-string": "^1.5.2"
- },
- "devDependencies": {
- "mocha": "*",
- "should": "*",
- "word-wrap": "^1.0.3"
- },
- "keywords": [
- "align",
- "align-center",
- "alignment",
- "center",
- "center-align",
- "indent",
- "pad",
- "padding",
- "right",
- "right-align",
- "text",
- "typography"
- ]
-}