From cd4923c69041d4aa1d717bf68eb6f5bd240ceebc Mon Sep 17 00:00:00 2001 From: Muhammad Haris Date: Sun, 15 Oct 2023 14:20:16 +0200 Subject: [PATCH] used signle quotes for string --- src/lib/toCamelCase.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/toCamelCase.js b/src/lib/toCamelCase.js index c1823ca2d..9ee84c192 100644 --- a/src/lib/toCamelCase.js +++ b/src/lib/toCamelCase.js @@ -1,6 +1,6 @@ export default function toCamelCase(inputString) { // If the input string is empty, return an empty string - if (typeof inputString !== "string" || inputString.length === 0) { + if (typeof inputString !== 'string' || inputString.length === 0) { return null; } @@ -13,5 +13,5 @@ export default function toCamelCase(inputString) { } // Join the words back together to form the camelCase string - return words.join(""); + return words.join(''); }