← back to browse
goat command

date

Shows the current date (English + Bangla)

0
views
0
likes
0
installs

Aliases: dt

raw source
module.exports = {
 config: {
  name: "date",
  aliases: ["dt"],
  version: "4.0.1",
  author: "šŒššš‘š®š…",
  description: "Shows the current date (English + Bangla)",
  category: "system"
 },

 onStart: async function ({ message }) {
  const now = new Date();

  const dateEn = now.toLocaleDateString("en-US", {
   timeZone: "Asia/Dhaka",
   weekday: "long",
   year: "numeric",
   month: "long",
   day: "numeric"
  });

  const dateBn = now.toLocaleDateString("bn-BD", {
   timeZone: "Asia/Dhaka",
   weekday: "long",
   year: "numeric",
   month: "long",
   day: "numeric"
  });

  const reply = `šŸ“…  চলতি তারিখ (English): ${dateEn}\nšŸ—“ļø  চলতি তারিখ (বাংলা): ${dateBn}\n\n✨  Maruf's Bot | Powered by Prime Maruf`;

  return message.reply(reply);
 }
};

View raw file