diff options
Diffstat (limited to 'node_modules/right-align/index.js')
-rw-r--r-- | node_modules/right-align/index.js | 16 |
1 files changed, 0 insertions, 16 deletions
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; - }); -}; |