UNPKG

v11-discord.js

Version:

A powerful library for interacting with the Discord API - patched by molo#7947

11 lines (8 loc) 224 B
const Action = require('./Action'); class GuildMemberGetAction extends Action { handle(guild, data) { const member = guild._addMember(data, false); return { member }; } } module.exports = GuildMemberGetAction;