mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 21:12:06 +00:00
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
'use strict';
|
|
|
|
const values = require('object.values');
|
|
const Client = require('./client/Client');
|
|
|
|
if (!Object.values) {
|
|
values.shim();
|
|
}
|
|
|
|
exports.Client = Client;
|