Created
April 20, 2021 18:39
-
-
Save woodwardtw/7ca9e3f213e078eb69aefd92d26d017b to your computer and use it in GitHub Desktop.
little google custom function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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