This commit is contained in:
Aya Morisawa
2018-08-18 04:13:25 +09:00
parent d7dbe503b6
commit 41cf856e26
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
const kaos = [
const faces = [
'(=^・・^=)',
'v(\'ω\')v',
'🐡( \'-\' 🐡 )フグパンチ!!!!',
@ -7,4 +7,4 @@ const kaos = [
'(Δ・x・Δ)'
];
export default () => kaos[Math.floor(Math.random() * kaos.length)];
export default () => faces[Math.floor(Math.random() * faces.length)];