From 6e045f3b02692879b4f8806b717ca92703fb5d9c Mon Sep 17 00:00:00 2001 From: mikesealey Date: Thu, 4 Jul 2024 14:14:02 +0100 Subject: [PATCH] removes unused "maxLoremLength" variable --- lib/string.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/string.js b/lib/string.js index c3da327..5ff57c9 100644 --- a/lib/string.js +++ b/lib/string.js @@ -821,7 +821,6 @@ helpers.uppercase = function(str) { helpers.lorem = function(num) { - const maxLoremLength = 100_000 // Sad Path - Not a number, or not greater than 1, or not truthy if (isNaN(num) || num < 1 || !num ) { num = 11