function GulpSSH(options) { if (!(this instanceof GulpSSH)) return new GulpSSH(options) if (!options || !options.sshConfig) throw new Error('options.sshConfig required!') this.options = options this.connections = Object.create(null) EventEmitter.call(this) }
n/a
function EventEmitter() { EventEmitter.init.call(this); }
n/a