diff options
Diffstat (limited to 'node_modules/equal-length/index.js')
-rw-r--r-- | node_modules/equal-length/index.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/node_modules/equal-length/index.js b/node_modules/equal-length/index.js deleted file mode 100644 index 2085dde66..000000000 --- a/node_modules/equal-length/index.js +++ /dev/null @@ -1,20 +0,0 @@ -'use strict'; - -module.exports = input => { - if (typeof input !== 'string') { - throw new TypeError(`Expected input to be a string, got ${typeof input}`); - } - - const lines = input.split('\n'); - const maxLength = Math.max.apply(null, lines.map(line => line.length)); - - return lines - .map(line => { - if (line.length < maxLength) { - line += ' '.repeat(maxLength - line.length); - } - - return line; - }) - .join('\n'); -}; |