UNPKG

hd-utils

Version:

A handy utils for modern JS developers

7 lines (6 loc) 255 B
/** * @description It returns true if the value is null, undefined, or an empty string * @param {string | null} [value] - The value to check. */ declare const isNullOrEmptyString: (value?: string | null) => boolean; export default isNullOrEmptyString;