diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-08-16 05:15:51 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-08-16 05:15:51 +0900 |
| commit | 270c7997c6c5ecf9d1e1491bf6729c2640bd4159 (patch) | |
| tree | 5347112ba6dda4f85c349c563058667ad4c3434d /src/client/app/common/scripts | |
| parent | Use Array.prototype.length to avoid magic number (diff) | |
| download | sharkey-270c7997c6c5ecf9d1e1491bf6729c2640bd4159.tar.gz sharkey-270c7997c6c5ecf9d1e1491bf6729c2640bd4159.tar.bz2 sharkey-270c7997c6c5ecf9d1e1491bf6729c2640bd4159.zip | |
Remove trailing comma
Diffstat (limited to 'src/client/app/common/scripts')
| -rw-r--r-- | src/client/app/common/scripts/get-kao.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/scripts/get-kao.ts b/src/client/app/common/scripts/get-kao.ts index 58857edfe1..dff7092064 100644 --- a/src/client/app/common/scripts/get-kao.ts +++ b/src/client/app/common/scripts/get-kao.ts @@ -2,7 +2,7 @@ const kaos = [ '(=^・・^=)', 'v(\'ω\')v', '🐡( \'-\' 🐡 )フグパンチ!!!!', - '🖕(´・_・`)🖕', + '🖕(´・_・`)🖕' ]; export default () => kaos[Math.floor(Math.random() * kaos.length)]; |