egirlskey/src/client/app/common/scripts/get-face.ts

12 lines
261 B
TypeScript
Raw Normal View History

2018-08-17 19:13:25 +00:00
const faces = [
2017-06-12 21:27:32 +00:00
'(=^・・^=)',
2018-06-28 07:21:35 +00:00
'v(\'ω\')v',
2018-08-14 17:01:49 +00:00
'🐡( \'-\' 🐡 )フグパンチ!!!!',
2018-11-28 09:57:22 +00:00
'✌️(´・_・`)✌️',
2018-08-17 18:55:45 +00:00
'(。><。)',
2019-07-14 17:28:30 +00:00
'(Δ・x・Δ)',
'(コ`・ヘ・´ケ)'
];
2018-08-17 19:13:25 +00:00
export default () => faces[Math.floor(Math.random() * faces.length)];