namastejs
Version:
A spiritual greeting from your JavaScript code. Because every function deserves a 'Namaste ๐'
20 lines (17 loc) โข 759 B
JavaScript
const blessings = [
"โจ May your git never conflict. ๐งโโ๏ธ",
"๐ May your code be bug-free on the first run. ๐ฅ",
"โ
May your pull requests always get approved. ๐",
"โณ May your deadlines extend themselves. ๐",
"๐งผ May the console be forever clean. ๐",
"โ May the caffeine never run out. ๐",
"๐ May your secrets never leak to GitHub. ๐คซ",
"๐ฆ May your builds never break on release day. ๐",
"๐ง May your brain always find the missing semicolon. ๐ช",
"๐ฏ May your tests pass on the first try. ๐งช",
];
function blessingForDev() {
const randomIndex = Math.floor(Math.random() * blessings.length);
return blessings[randomIndex];
}
module.exports = { blessingForDev };