mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-04 09:16:43 -06:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
const faces = [
|
||
'(=^・・^=)',
|
||
'v(\'ω\')v',
|
||
'🐡( \'-\' 🐡 )フグパンチ!!!!',
|
||
'✌️(´・_・`)✌️',
|
||
'(。>﹏<。)',
|
||
'(Δ・x・Δ)',
|
||
'(コ`・ヘ・´ケ)'
|
||
];
|
||
|
||
export default () => faces[Math.floor(Math.random() * faces.length)];
|