From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- node_modules/equal-length/index.js | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 node_modules/equal-length/index.js (limited to 'node_modules/equal-length/index.js') 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'); -}; -- cgit v1.2.3