Skip to content

Instantly share code, notes, and snippets.

@ORESoftware
Last active January 17, 2022 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ORESoftware/8890c6899a3eaf713a53a8d35a3f0b6d to your computer and use it in GitHub Desktop.
Save ORESoftware/8890c6899a3eaf713a53a8d35a3f0b6d to your computer and use it in GitHub Desktop.
const passAStringOrNull = (v: StringOrNull) => {
if(v == null){
v = "default string";
}
return goDoDatabaseStuff((String)v);
}
// end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment