mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-06-05 22:09:23 +02:00
Transition to monorepo on a new Dev branch
This commit is contained in:
21
App/Source/node_modules/center-align/LICENSE
generated
vendored
Normal file
21
App/Source/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.
|
16
App/Source/node_modules/center-align/index.js
generated
vendored
Normal file
16
App/Source/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);
|
||||
});
|
||||
};
|
51
App/Source/node_modules/center-align/package.json
generated
vendored
Normal file
51
App/Source/node_modules/center-align/package.json
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "center-align",
|
||||
"description": "Center-align the text in a string.",
|
||||
"version": "0.1.3",
|
||||
"homepage": "https://github.com/jonschlinkert/center-align",
|
||||
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||
"repository": "jonschlinkert/center-align",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jonschlinkert/center-align/issues"
|
||||
},
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"index.js",
|
||||
"utils.js"
|
||||
],
|
||||
"main": "index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"dependencies": {
|
||||
"align-text": "^0.1.3",
|
||||
"lazy-cache": "^1.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha": "^2.2.0"
|
||||
},
|
||||
"keywords": [
|
||||
"align",
|
||||
"align-center",
|
||||
"center",
|
||||
"center-align",
|
||||
"right",
|
||||
"right-align",
|
||||
"text",
|
||||
"typography"
|
||||
],
|
||||
"verb": {
|
||||
"related": {
|
||||
"description": "",
|
||||
"list": [
|
||||
"align-text",
|
||||
"right-align",
|
||||
"justified",
|
||||
"word-wrap"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
40
App/Source/node_modules/center-align/utils.js
generated
vendored
Normal file
40
App/Source/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