This question already has an answer here:
I am unsure of which of these ways is faster to use multiple times, testing with a lot of string variables.
Which of these is faster to use for checking if the string is just whitespace?
if (str.trim().length > 0) {
}
Or
if (str.trim() !== '') {
}