Skip to content

Instantly share code, notes, and snippets.

@michaeljscript
Last active April 3, 2019 14:01
Show Gist options
  • Save michaeljscript/a53bcd47d9924052a20c09afbcb91861 to your computer and use it in GitHub Desktop.
Save michaeljscript/a53bcd47d9924052a20c09afbcb91861 to your computer and use it in GitHub Desktop.
function isPerson(value: unknown): value is Person {
return typeof value === 'object' && value &&
value.hasOwnProperty('name') &&
value.hasOwnProperty('age') &&
typeof value.name === 'string' &&
typeof value.age === 'number';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment