MyCrypto/common/utils/consoleAdvertisement.ts

34 lines
3.0 KiB
TypeScript
Raw Normal View History

// Simply importing this file will do the console log conditionally
// prettier-ignore
export default function consoleAdvertisement() {
console.log(
`%c
,:;;;;;;;;;;;,
;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;,
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;.
;;;;;;;;;;'';;;;;;;;;'';;;;;;;;;;
.;;;;;;;;: ;;;;; :;;;;;;;;
;;;;;;;: ' ;;;;;;;; _ _ _ _ _
;;;;;;; ;;;; ;;;; ;;;;;;: | | (_) | | | | | |
';;;;;;; ;;;;;;;; ;;;;;;;; ;;;;;;; | | ___ _ _ __ | | | |___| |
:;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; _ | |/ _ \\| | '_ \\ | | | / __| |
,;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |__| | (_) | | | | | | |__| \\__ \\_|
;;;;;;;;;;;; ;;;;;;;;; ;;;;;;;;;;;; \\____/ \\___/|_|_| |_| \\____/|___(_)
;;;;;;;;;;;; ;;;;; ;;;;;;;;;;;,
2018-03-03 19:12:45 +00:00
;;;;;;;;;;;;: :;;;;;;;;;;;; https://github.com/MyCryptoHQ/MyCrypto ┃
;;;;;;;;;;;;;: :;;;;;;;;;;;;;
;;;;;;;;;;;;;;: :;;;;;;;;;;;;;;
';;;;;;;;;;;;;;;;;;;;;;;;;;;;;
';;;;;;;;;;;;;;;;;;;;;;;;;
';;;;;;;;;;;;;;;;;;;'
:;;;;;;;;;:
`,
'background: #163151; color: #FFF;'
);
}