Clarified options and added autoRevive option

Useful when investigating potential option parameters
This commit is contained in:
Amish Shah
2015-12-06 19:11:59 +00:00
parent 706682af55
commit 41efef750f

View File

@@ -18,6 +18,8 @@ export default class Client extends EventEmitter {
constructor(options) {
super();
this.options = options || {};
this.options.compress = options.compress || true;
this.options.autoRevive = options.autoRevive || false;
this.internal = new InternalClient(this);
}