Skip to content

Instantly share code, notes, and snippets.

@koss-lebedev
Last active May 24, 2018 12:29
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 koss-lebedev/52668041ed6225ffa015c003d3866483 to your computer and use it in GitHub Desktop.
Save koss-lebedev/52668041ed6225ffa015c003d3866483 to your computer and use it in GitHub Desktop.
// @flow
const isStringEmpty = (str?: string) => {
return str && str.trim() !== ""
}
const first = isStringEmpty(null)
const second = isStringEmpty("")
const third = isStringEmpty("test")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment