()
| 2 | import { isProduction } from '../lib/constants'; |
| 3 | |
| 4 | export function useConsoleLogo(): void { |
| 5 | useEffect(() => { |
| 6 | if (!isProduction) { |
| 7 | return; |
| 8 | } |
| 9 | |
| 10 | // eslint-disable-next-line no-console |
| 11 | console.log(` |
| 12 | |
| 13 | :*#*: :*#*: |
| 14 | :%@@@@@#. .#@@@@@%. |
| 15 | *@@@@@@@@@*. .*@@@@@@@=+= |
| 16 | *@@@@@@@@@@@@@* *@@@@@@@=.=+++- |
| 17 | =@@@@@@@=.+@@@@@@@= =@@@@@@@+ +++++++: |
| 18 | =@@@@@@@*. *@@@%: =@@@@@@@*. -+++++++: |
| 19 | :@@@@@@@#. .#- :@@@@@@@%. .=++++++=. |
| 20 | %@@@@@%: .%@@@@@@%. .=+++++= |
| 21 | :@@@@@@@#. .#@@@@@@@: =+++++++. |
| 22 | =@@@@@@@* *@@@@@@@= -+++++++: |
| 23 | +@@@@@@@ +@@@@@@@+ :+++++++- |
| 24 | *@@@@:=@@@@@@@* :+++++++= |
| 25 | .#@=@@@@@@@#. =++++++= |
| 26 | :%@@@@@%: .+++++=. |
| 27 | :*%*: .-==. |
| 28 | |
| 29 | `); |
| 30 | }, []); |
| 31 | } |
no outgoing calls
no test coverage detected