From 57797b8acb2287d7edc8b5bc27364f81c2222141 Mon Sep 17 00:00:00 2001 From: Mihail Gorceag <mgorceag@EN410053.local> Date: Fri, 2 Apr 2021 11:26:24 +0300 Subject: [PATCH] fix: fix crash if not string is passed to fn --- app/shared/convertCamelCaseToText.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/shared/convertCamelCaseToText.js b/app/shared/convertCamelCaseToText.js index 9c2c77ae7a..5c0dcbab7d 100644 --- a/app/shared/convertCamelCaseToText.js +++ b/app/shared/convertCamelCaseToText.js @@ -1,5 +1,6 @@ -export function convertCamelCaseToText (text) { - const result = text.replace( /([A-Z])/g, " $1" ) - const finalResult = result.charAt(0) + result.slice(1) - return finalResult.toLowerCase() - } \ No newline at end of file +export function convertCamelCaseToText(text) { + if (typeof text !== 'string') return '' + const result = text.replace(/([A-Z])/g, ' $1') + const finalResult = result.charAt(0) + result.slice(1) + return finalResult.toLowerCase() +} -- GitLab