Skip to content

Instantly share code, notes, and snippets.

@orion55
Created August 6, 2025 04:06
Show Gist options
  • Select an option

  • Save orion55/6e544e305d159a98954c468e81793d26 to your computer and use it in GitHub Desktop.

Select an option

Save orion55/6e544e305d159a98954c468e81793d26 to your computer and use it in GitHub Desktop.
isEmpty
export const isEmpty = (value) => {
return (
value === undefined ||
value === null ||
(typeof value === "object" && Object.keys(value).length === 0) ||
(typeof value === "string" && value.trim().length === 0)
// уберите trim, если строка из одних пробелов для вас не пустая
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment