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

11 lines
234 B
TypeScript
Raw Normal View History

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