mirror of https://github.com/jkjoy/sunpeiwen.git
13 lines
208 B
JavaScript
13 lines
208 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const byeWords = [
|
||
|
'Good bye',
|
||
|
'See you again',
|
||
|
'Farewell',
|
||
|
'Have a nice day',
|
||
|
'Bye!',
|
||
|
'Catch you later'
|
||
|
];
|
||
|
|
||
|
module.exports = () => byeWords[(Math.random() * byeWords.length) | 0];
|