UNPKG

@flex-development/tutils

Version:
13 lines (12 loc) 324 B
/** * @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;