Checks if the string is blank (has no non-space content).
11.0.0
If the string is blank.
isBlank("")// => trueisBlank(" ")// => trueisBlank(" foo ")// => false
String to use.
Generated using TypeDoc
Checks if the string is blank (has no non-space content).
Since
11.0.0
Returns
If the string is blank.
Example