1/*! 2 * center-align <https://github.com/jonschlinkert/center-align> 3 * 4 * Copycenter (c) 2015, Jon Schlinkert. 5 * Licensed under the MIT License. 6 */ 7 8'use strict'; 9 10var utils = require('./utils'); 11 12module.exports = function centerAlign(val) { 13 return utils.align(val, function (len, longest) { 14 return Math.floor((longest - len) / 2); 15 }); 16}; 17