Last active
August 22, 2020 16:23
-
-
Save alsolovyev/50a9c253575b20a9d06e99d9a39af03d to your computer and use it in GitHub Desktop.
Greetings, Sire!
This file contains 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 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