Skip to content

Instantly share code, notes, and snippets.

@michaeljscript
Created March 15, 2019 13:22
Show Gist options
  • Save michaeljscript/0f174cf0a872498cc620719e699727df to your computer and use it in GitHub Desktop.
Save michaeljscript/0f174cf0a872498cc620719e699727df to your computer and use it in GitHub Desktop.
const data: unknown = response.body;
const maybePerson = parsePerson(data);
if (maybePerson) {
// maybePerson is Person
console.log('Welcome ' + maybePerson.name);
} else {
console.log('You are not a person!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment