aboutsummaryrefslogtreecommitdiff
path: root/node_modules/right-align
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/right-align')
-rw-r--r--node_modules/right-align/LICENSE21
-rw-r--r--node_modules/right-align/README.md77
-rw-r--r--node_modules/right-align/index.js16
-rw-r--r--node_modules/right-align/package.json45
4 files changed, 0 insertions, 159 deletions
diff --git a/node_modules/right-align/LICENSE b/node_modules/right-align/LICENSE
deleted file mode 100644
index 65f90aca8..000000000
--- a/node_modules/right-align/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/right-align/README.md b/node_modules/right-align/README.md
deleted file mode 100644
index 3abdfb3a7..000000000
--- a/node_modules/right-align/README.md
+++ /dev/null
@@ -1,77 +0,0 @@
-# right-align [![NPM version](https://badge.fury.io/js/right-align.svg)](http://badge.fury.io/js/right-align)
-
-> Right-align the text in a string.
-
-Install with [npm](https://www.npmjs.com/)
-
-```sh
-$ npm i right-align --save
-```
-
-## Usage
-
-```js
-var rightAlign = require('right-align');
-rightAlign(string);
-```
-
-**Example**
-
-If used on the following:
-
-```
-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
-```
-
-The result would be:
-
-```
- 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
-
-* [align-text](https://github.com/jonschlinkert/align-text): Align the text in a string.
-* [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
-* [repeat-string](https://github.com/jonschlinkert/repeat-string): Repeat the given string n times. Fastest implementation for repeating a string.
-* [repeat-element](https://github.com/jonschlinkert/repeat-element): Create an array by repeating the given value n times.
-* [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/right-align/issues/new)
-
-## Author
-
-**Jon Schlinkert**
-
-+ [github/jonschlinkert](https://github.com/jonschlinkert)
-+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
-
-## License
-
-Copyright © 2015 Jon Schlinkert
-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/right-align/index.js b/node_modules/right-align/index.js
deleted file mode 100644
index ad54f5f1c..000000000
--- a/node_modules/right-align/index.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*!
- * right-align <https://github.com/jonschlinkert/right-align>
- *
- * Copyright (c) 2015, Jon Schlinkert.
- * Licensed under the MIT License.
- */
-
-'use strict';
-
-var align = require('align-text');
-
-module.exports = function rightAlign(val) {
- return align(val, function (len, longest) {
- return longest - len;
- });
-};
diff --git a/node_modules/right-align/package.json b/node_modules/right-align/package.json
deleted file mode 100644
index fe20d26d2..000000000
--- a/node_modules/right-align/package.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "name": "right-align",
- "description": "Right-align the text in a string.",
- "version": "0.1.3",
- "homepage": "https://github.com/jonschlinkert/right-align",
- "author": {
- "name": "Jon Schlinkert",
- "url": "https://github.com/jonschlinkert"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/jonschlinkert/right-align.git"
- },
- "bugs": {
- "url": "https://github.com/jonschlinkert/right-align/issues"
- },
- "license": "MIT",
- "files": [
- "index.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "dependencies": {
- "align-text": "^0.1.1"
- },
- "devDependencies": {
- "mocha": "*",
- "should": "*"
- },
- "keywords": [
- "align",
- "align-center",
- "center",
- "center-align",
- "right",
- "right-align",
- "text",
- "typography"
- ]
-}