Skip to content

Instantly share code, notes, and snippets.

@alsolovyev
Last active August 22, 2020 16:23
Show Gist options
  • Save alsolovyev/50a9c253575b20a9d06e99d9a39af03d to your computer and use it in GitHub Desktop.
Save alsolovyev/50a9c253575b20a9d06e99d9a39af03d to your computer and use it in GitHub Desktop.
Greetings, Sire!

Greetings, Sire!

function greeting() {
if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) {
var args = [
'\n\n%c Made with ❤️ by janeRivas %c <[email protected]> %c %c 🐳 \n\n',
'border: 1px solid #181C21; background: #F6F6F4; color: #181C21; padding: 5px 0',
'border: 1px solid #181C21; background: #181C21; color: #F6F6F4; padding: 5px 0',
'padding: 5px 0',
'padding: 5px 0',
]
window.console.log.apply(console, args)
} else if (window.console) {
window.console.log('Made with love ❤️ janeRivas - <[email protected]> 🐳')
}
}
export default greeting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment