hexo/node_modules/hexo-cli/lib/goodbye.js

13 lines
208 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
'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];