Skip to content

Instantly share code, notes, and snippets.

@takethefake
Last active October 21, 2018 10:58
Show Gist options
  • Save takethefake/bf4d4a1ea75327a867325592e8d34328 to your computer and use it in GitHub Desktop.
Save takethefake/bf4d4a1ea75327a867325592e8d34328 to your computer and use it in GitHub Desktop.
Medium: Flow Static Typecheck example
/* @flow */
function foo(x: ?number): string {
if (x) {
return x;
}
return "default string";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment