@flex-development/tutils
Version:
TypeScript utilities
13 lines (12 loc) • 324 B
text/typescript
/**
* @file Type Guards - isEmptyString
* @module tutils/guards/isEmptyString
*/
/**
* Checks if `value` is an empty string.
*
* @param {any} [value] - Value to check
* @return {boolean} `true` if `value` is an empty string
*/
declare const isEmptyString: (value?: any) => value is "";
export default isEmptyString;