Skip to content

Instantly share code, notes, and snippets.

@meekg33k
Last active March 31, 2020 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meekg33k/fbd96d65a1d86beb6f230db2c55c1d9d to your computer and use it in GitHub Desktop.
Save meekg33k/fbd96d65a1d86beb6f230db2c55c1d9d to your computer and use it in GitHub Desktop.
Util function now supports AnotherObjectType https://medium.com/p/177b4a654ef6
type ObjectType = SomeObjectType | AnotherObjectType | undefined;
const isPresentSomeAnotherObject = (arg: ObjectType): boolean => {
if (arg && Object.keys(arg).length > 0) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment