From 4c5e56055b99cbdb125a738a5835e6034a2f8eba Mon Sep 17 00:00:00 2001 From: mde Date: Mon, 17 Aug 2020 08:58:50 -0700 Subject: [PATCH] Removed arrow --- lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.js b/lib/utils.js index 83fbd167..284de066 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -175,5 +175,5 @@ exports.cache = { * @private */ exports.hyphenToCamel = function (str) { - return str.replace(/-[a-z]/g, (match) => { return match[1].toUpperCase(); }); + return str.replace(/-[a-z]/g, function (match) { return match[1].toUpperCase(); }); };