node/tools/eslint/node_modules/center-align/index.js
Michaël Zasso 2d441493a4 tools: update eslint to v1.10.3
PR-URL: https://github.com/nodejs/io.js/pull/2286
Reviewed-By: Roman Reiss <me@silverwind.io>
2016-01-13 23:15:39 +01:00

17 lines
349 B
JavaScript

/*!
* 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);
});
};