Skip to content

Instantly share code, notes, and snippets.

@kiraind
Last active May 24, 2020 22:01
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 kiraind/f0f766ebad842d2d530c82e99c020024 to your computer and use it in GitHub Desktop.
Save kiraind/f0f766ebad842d2d530c82e99c020024 to your computer and use it in GitHub Desktop.
const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+_'
export default function randomBase64(length) {
let str = ''
for(let i = 0; i < length; i += 1) {
str += alphabet[
Math.floor(
Math.random() * alphabet.length
)
]
}
return str
}
export default function validateEmail(email) {
const re = /(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/
return re.test(email)
}
export default function capitalize(str) {
return str.charAt(0).toUpperCase() + str.slice(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment