Given the following:
myOption: Option[String]
What is the most idiomatic way to check if the String value inside the Option is empty (if its not defined, then it should be considered empty)?
Is myOption.getOrElse("").isEmpty the best / cleanest way?