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