From 331b0de671acfe695ef31b49b634fe0df2ca100f Mon Sep 17 00:00:00 2001 From: Lars Kappert Date: Tue, 11 Oct 2022 14:17:16 +0200 Subject: [PATCH] Remove unused export/function --- lib/util.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/util.js b/lib/util.js index 2ac48c0c..7b74d293 100644 --- a/lib/util.js +++ b/lib/util.js @@ -20,8 +20,6 @@ const getSystemInfo = () => { }; }; -const clean = args => args.filter(arg => arg != null); - const format = (template = '', context = {}) => { try { return _.template(template)(context); @@ -95,7 +93,6 @@ const e = (message, docs) => new Error(docs ? `${message}${EOL}Documentation: ${ export { getSystemInfo, - clean, format, truncateLines, rejectAfter,