UNPKG

nobloxmmc.js

Version:

A Node.js wrapper for ROBLOX. (original from sentanos)

23 lines (19 loc) 460 B
const http = require('../util/http.js').func exports.optional = ['jar'] exports.func = (args) => { const jar = args.jar return http({ url: '//chat.roblox.com/v2/get-unread-conversation-count', options: { method: 'GET', jar: jar, resolveWithFullResponse: true } }).then((res) => { if (res.statusCode !== 200) { throw new Error('You are not logged in') } else { return JSON.parse(res.body) } }) }