29 lines
2.2 KiB
TypeScript
29 lines
2.2 KiB
TypeScript
|
// Simply importing this file will do the console log conditionally
|
||
|
export default function consoleAdvertisement() {
|
||
|
console.log(
|
||
|
`%c
|
||
|
|
||
|
,:;;;;;;;;;;:.
|
||
|
.;;;;;;::;;;;;;;;;;;;'
|
||
|
::::;;;;::::;;;;;;;;;;;;;: _ _ _ _ _
|
||
|
;::;;::;;:::' .;;;;;;;;;;;, | | (_) | | | | | |
|
||
|
;;:;;;;::;:; ;;;;;;;;: | | ___ _ _ __ | | | |___| |
|
||
|
;;:;;;;;;::;;; ;;;;;;;: _ | |/ _ \\| | '_ \\ | | | / __| |
|
||
|
;;::;;;;;::::;;;;;;;, ;;;;;;;, | |__| | (_) | | | | | | |__| \\__ |_|
|
||
|
;::;;;; :;;::;;;;;::;; ;;;;;;; \\____/ \\___/|_|_| |_| \\____/|___(_)
|
||
|
:::;;;;' ;:;;;;;;::;' ,;;;;;;
|
||
|
:;;;;;; ;::;;;;' ,;;;;:: https://github.com/MyEtherWallet/MyEtherWallet
|
||
|
.;;;;;;, ,;::;;;;;;;; ;;;;;:;
|
||
|
;;;;;;; ;::;;;;;;:;:;',;;;;:;;
|
||
|
';;;;;;; ';;;;::;;;;;;::;
|
||
|
.;;;;;;;' ;;:::;;;;;::;
|
||
|
;;;;;;;;;'' ;:;;:;;;::;
|
||
|
::::;;;;::::;;;;;;;;;;;;;:
|
||
|
.;;;;;;::;;;;;;;;;;;;'
|
||
|
,:;;;;;;;;;;:.
|
||
|
|
||
|
`,
|
||
|
'background: #163151; color: #FFF;'
|
||
|
);
|
||
|
}
|