From 8da502a79e212710567c0e99f64e3b0aba9b5109 Mon Sep 17 00:00:00 2001 From: Bryan Alejandro Sanchez Ramirez Date: Fri, 21 Aug 2020 15:37:45 -0500 Subject: [PATCH] It's my first day --- src/index.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/index.js b/src/index.js index 5274bd4..c586a7c 100644 --- a/src/index.js +++ b/src/index.js @@ -16,13 +16,14 @@ const messages = [ "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live", "naruto, The programmer ninja!", "The covid-19 block my commit", + "It's my first day", ]; const funnyCommit = () => { const message = messages[Math.floor(Math.random() * messages.length)]; console.log(`\x1b[34m${message}\x1b[89m`); -} +}; module.exports = { - funnyCommit -}; \ No newline at end of file + funnyCommit, +};