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

11 lines
230 B
TypeScript
Raw Normal View History

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