haha yes very funny
"getting the gist of things"
much funny
very make me laughing
This file contains 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 { MessageEmbed } = require('discord.js'); | |
const columnify = require('columnify'); | |
const { itemData, totemData, lmcPrice, priceData } = require('../data'); | |
const { getUserPrices } = require('../util'); | |
const INVALID_INPUT_MESSAGE = | |
'One or more of your inputs are not valid. Input must be in the format of `utility/efficiency/quality` and all values must be between 0 and 53.'; | |
const parseInteger = (str) => { | |
if (!/^(0|[1-9]\d*)$/.test(str)) return; |
This file contains 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
function randomThing() { | |
print('e') | |
} |