Skip to content

Instantly share code, notes, and snippets.

@woodwardtw
Created April 20, 2021 18:39
Show Gist options
  • Select an option

  • Save woodwardtw/7ca9e3f213e078eb69aefd92d26d017b to your computer and use it in GitHub Desktop.

Select an option

Save woodwardtw/7ca9e3f213e078eb69aefd92d26d017b to your computer and use it in GitHub Desktop.
little google custom function
function emailClean(input) {
let email = input.split("@")
let clean = email[0]
return clean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment