mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-10 21:01:41 +00:00
update
This commit is contained in:
21
node_modules/center-align/LICENSE
generated
vendored
Normal file
21
node_modules/center-align/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
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.
|
74
node_modules/center-align/README.md
generated
vendored
Normal file
74
node_modules/center-align/README.md
generated
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
# center-align [](http://badge.fury.io/js/center-align)
|
||||
|
||||
> Center-align the text in a string.
|
||||
|
||||
Install with [npm](https://www.npmjs.com/)
|
||||
|
||||
```sh
|
||||
$ npm i center-align --save
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var centerAlign = require('center-align');
|
||||
```
|
||||
|
||||
**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://www.npmjs.com/package/align-text): Align the text in a string. | [homepage](https://github.com/jonschlinkert/align-text)
|
||||
* [justified](https://www.npmjs.com/package/justified): Wrap words to a specified length and justified the text. | [homepage](https://github.com/jonschlinkert/justified)
|
||||
* [right-align](https://www.npmjs.com/package/right-align): Right-align the text in a string. | [homepage](https://github.com/jonschlinkert/right-align)
|
||||
* [word-wrap](https://www.npmjs.com/package/word-wrap): Wrap words to a specified length. | [homepage](https://github.com/jonschlinkert/word-wrap)
|
||||
|
||||
## 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/center-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 October 27, 2015._
|
16
node_modules/center-align/index.js
generated
vendored
Normal file
16
node_modules/center-align/index.js
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
/*!
|
||||
* center-align <https://github.com/jonschlinkert/center-align>
|
||||
*
|
||||
* Copycenter (c) 2015, Jon Schlinkert.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var utils = require('./utils');
|
||||
|
||||
module.exports = function centerAlign(val) {
|
||||
return utils.align(val, function (len, longest) {
|
||||
return Math.floor((longest - len) / 2);
|
||||
});
|
||||
};
|
85
node_modules/center-align/package.json
generated
vendored
Normal file
85
node_modules/center-align/package.json
generated
vendored
Normal file
@ -0,0 +1,85 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"center-align@0.1.3",
|
||||
"/Users/tatiana/selfdefined"
|
||||
]
|
||||
],
|
||||
"_from": "center-align@0.1.3",
|
||||
"_id": "center-align@0.1.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
|
||||
"_location": "/center-align",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "center-align@0.1.3",
|
||||
"name": "center-align",
|
||||
"escapedName": "center-align",
|
||||
"rawSpec": "0.1.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.1.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/pug-filters/cliui"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
|
||||
"_spec": "0.1.3",
|
||||
"_where": "/Users/tatiana/selfdefined",
|
||||
"author": {
|
||||
"name": "Jon Schlinkert",
|
||||
"url": "https://github.com/jonschlinkert"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/jonschlinkert/center-align/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"align-text": "^0.1.3",
|
||||
"lazy-cache": "^1.0.3"
|
||||
},
|
||||
"description": "Center-align the text in a string.",
|
||||
"devDependencies": {
|
||||
"mocha": "^2.2.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"utils.js"
|
||||
],
|
||||
"homepage": "https://github.com/jonschlinkert/center-align",
|
||||
"keywords": [
|
||||
"align",
|
||||
"align-center",
|
||||
"center",
|
||||
"center-align",
|
||||
"right",
|
||||
"right-align",
|
||||
"text",
|
||||
"typography"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "center-align",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/jonschlinkert/center-align.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"verb": {
|
||||
"related": {
|
||||
"description": "",
|
||||
"list": [
|
||||
"align-text",
|
||||
"right-align",
|
||||
"justified",
|
||||
"word-wrap"
|
||||
]
|
||||
}
|
||||
},
|
||||
"version": "0.1.3"
|
||||
}
|
40
node_modules/center-align/utils.js
generated
vendored
Normal file
40
node_modules/center-align/utils.js
generated
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Lazily-required module dependencies (makes the application
|
||||
* faster)
|
||||
*/
|
||||
|
||||
var utils = require('lazy-cache')(require);
|
||||
|
||||
/**
|
||||
* Temporarily re-assign `require` to trick browserify and
|
||||
* webpack into reconizing lazy dependencies.
|
||||
*
|
||||
* This tiny bit of ugliness has the huge dual advantage of
|
||||
* only loading modules that are actually called at some
|
||||
* point in the lifecycle of the application, whilst also
|
||||
* allowing browserify and webpack to find modules that
|
||||
* are depended on but never actually called.
|
||||
*/
|
||||
|
||||
var fn = require;
|
||||
require = utils;
|
||||
|
||||
/**
|
||||
* Lazily required module dependencies
|
||||
*/
|
||||
|
||||
require('align-text', 'align');
|
||||
|
||||
/**
|
||||
* Restore `require`
|
||||
*/
|
||||
|
||||
require = fn;
|
||||
|
||||
/**
|
||||
* Expose `utils` modules
|
||||
*/
|
||||
|
||||
module.exports = utils;
|
Reference in New Issue
Block a user