From 3f1b8e71b142227e505c2c7f6d48cb76c87a2579 Mon Sep 17 00:00:00 2001 From: fill-the-fill Date: Thu, 30 Nov 2023 13:50:11 +0200 Subject: [PATCH] Test PR commit --- lib/formatCamelCase.mjs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/formatCamelCase.mjs b/lib/formatCamelCase.mjs index 0dff213..b0d3443 100644 --- a/lib/formatCamelCase.mjs +++ b/lib/formatCamelCase.mjs @@ -12,6 +12,8 @@ const formatCamelCase = (text) => { .split(WHITE_SPACE_REGEX) .map((word, index) => formatCase(word, index)) .join('') -}; - + }; + console.log('test'); + export default formatCamelCase; +