This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Contoh HTML</title> | |
| </head> | |
| <body> | |
| <h1>Ini Heading 1.</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Discord = require("discord.js"); | |
| const dateFormat = require('dateformat'); | |
| exports.run = (client, message, args, tools) => { | |
| const now = new Date(); | |
| dateFormat(now, '***On dddd, mmmm dS, yyyy, h:MM:ss TT***'); | |
| let region = { | |
| "brazi": "**Brazil** :flag_br:", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Discord = require("discord.js") | |
| const moment = require('moment'); | |
| const _fs = require("fs"); | |
| const packages = JSON.parse(_fs.readFileSync('./package.json', 'utf-8')); | |
| require('moment-duration-format'); | |
| const os = require('os'); | |
| let cpu = os.cpus(); | |
| exports.run = (client, message, args, tools) => { | |
| const duration = moment.duration(client.uptime).format(" D [days], H [hrs], m [mins], s [secs]"); |