@tempots/std

isEmptyString() function

isEmpty returns true if either value is null or is an empty string.

Signature:

isEmptyString: (value: string) => boolean

Parameters

Parameter

Type

Description

value

string

The string to check.

Returns: boolean

true if the string is null or empty, false otherwise.