Skip to content

Instantly share code, notes, and snippets.

@meekg33k
Last active March 31, 2020 09:29
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/244aa2995bc123de9c2b1595ce13bee4 to your computer and use it in GitHub Desktop.
Save meekg33k/244aa2995bc123de9c2b1595ce13bee4 to your computer and use it in GitHub Desktop.
Utility function with argument of type any https://medium.com/p/177b4a654ef6
//Keep adding more types to the union, good luck with that
type ObjectType = SomeObjectType | AnotherObjectType
| ... | AnyOtherObjectYouWantToAddType | undefined;
//OR
//Just make the argument of type any 😱
const isPresentAny = (arg: any): 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