Skip to content

Instantly share code, notes, and snippets.

@davidgilbertson
Created April 18, 2021 04:30
Show Gist options
  • Save davidgilbertson/02d113308b345c94873d3fa9e83eb6e2 to your computer and use it in GitHub Desktop.
Save davidgilbertson/02d113308b345c94873d3fa9e83eb6e2 to your computer and use it in GitHub Desktop.
const makeBigger = (stringOrNumber: string | number) => {
if (typeof stringOrNumber === 'string') {
return stringOrNumber.toUpperCase();
}
return stringOrNumber * 4;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment