summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/get-face.ts
blob: b523948bd388346074e4d53c89a85b83a9fc07ff (plain)
1
2
3
4
5
6
7
8
9
10
const faces = [
	'(=^・・^=)',
	'v(\'ω\')v',
	'🐡( \'-\' 🐡 )フグパンチ!!!!',
	'✌️(´・_・`)✌️',
	'(。>﹏<。)',
	'(Δ・x・Δ)'
];

export default () => faces[Math.floor(Math.random() * faces.length)];