Files
blog/node_modules/hexo-cli/dist/goodbye.js
2025-07-16 16:30:56 +00:00

11 lines
253 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];
//# sourceMappingURL=goodbye.js.map