MCPcopy Create free account
hub / github.com/dailydotdev/apps / useConsoleLogo

Function useConsoleLogo

packages/shared/src/hooks/useConsoleLogo.ts:4–31  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import { isProduction } from '../lib/constants';
3
4export 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}

Callers 2

InternalAppFunction · 0.90
InternalAppFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected