Webpack build for branch master: 602fe06f88

This commit is contained in:
Travis CI 2017-06-24 22:38:21 +00:00
parent b2a5c64d6a
commit b01619abe4

View file

@ -16404,6 +16404,7 @@ module.exports = ClientDataResolver;
/** /**
* Represents an error from the Discord API. * Represents an error from the Discord API.
* @extends Error
*/ */
class DiscordAPIError extends Error { class DiscordAPIError extends Error {
constructor(error) { constructor(error) {
@ -16424,6 +16425,7 @@ class DiscordAPIError extends Error {
* @param {Object} obj Discord errors object * @param {Object} obj Discord errors object
* @param {string} [key] Used internally to determine key names of nested fields * @param {string} [key] Used internally to determine key names of nested fields
* @returns {string[]} * @returns {string[]}
* @private
*/ */
static flattenErrors(obj, key = '') { static flattenErrors(obj, key = '') {
let messages = []; let messages = [];