Skip to content

Instantly share code, notes, and snippets.

@captain-yossarian
Created June 23, 2021 21:14
Show Gist options
  • Save captain-yossarian/48d21b9b3d7e1c3245a4c91c309ff741 to your computer and use it in GitHub Desktop.
Save captain-yossarian/48d21b9b3d7e1c3245a4c91c309ff741 to your computer and use it in GitHub Desktop.
Option
/**
* Shamelessly stolen from Rust
*/
type None = null | undefined;
type Some<T> = T
type Option<T> = Some<T> | None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment