Zero Dragon
Zero Dragon
you need to open (re-open) an im channel with the user ``` const postMessageToUserById = async (userID, message, opts={}) => { const { channel: { id: channelID } } =...
you can use browserify to make this fully client side and then just use it like any other javascript in the frontend
This is exactly what I did: **temp.js** `ivCalculator = require('pokemon-go-iv-calculator');` Then just run `$>browserify temp.js -o ivCalculator.js` As you said, in my `` I called it like this `` And...