1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-15 17:26:02 +02:00
Files
misskey/src/client/app/common/scripts/get-kao.ts
Aya Morisawa afa62d3d44 Add new kao
2018-08-16 05:17:00 +09:00

10 lines
209 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const kaos = [
'(=^・・^=)',
'v(\'ω\')v',
'🐡( \'-\' 🐡 )フグパンチ!!!!',
'🖕(´・_・`)🖕',
'(。><。)'
];
export default () => kaos[Math.floor(Math.random() * kaos.length)];