UNPKG

@shayanthenerd/eslint-config

Version:

A modern, flexible ESLint configuration for enforcing best practices and maintaining a consistent coding style

7 lines (6 loc) 174 B
//#region src/utils/isEmptyString.ts function isEmptyString(value) { return typeof value === "string" && value.trim().length === 0; } //#endregion export { isEmptyString };