Skip to content

Instantly share code, notes, and snippets.

@rpetrich
Created October 6, 2018 17:32
Show Gist options
  • Save rpetrich/43ffaef00fab55082c65ba58d2fe33b8 to your computer and use it in GitHub Desktop.
Save rpetrich/43ffaef00fab55082c65ba58d2fe33b8 to your computer and use it in GitHub Desktop.
Coalesce operator in swift-to-js
export function coalesce$option$(option) {
return option !== null ? option : false;
}
public func coalesce(option: Bool?) -> Bool {
return option ?? false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment