Skip to content

Commit b07e018

Browse files
committedFeb 10, 2018
feat(connection): extend event emitter
Allow custom events
1 parent ec30a5a commit b07e018

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/connection.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
const _ = require('lodash');
22
const uuid = require('uuid');
33
const Promise = require('bluebird');
4+
const EventEmitter = require('events');
45

56
const BaseConnector = require('./connector/base');
67
const FileSystem = require('./fs');
78
const Commands = require('./commands');
89
const errors = require('./errors');
910
const DEFAULT_MESSAGE = require('./messages');
1011

11-
class FtpConnection {
12+
class FtpConnection extends EventEmitter {
1213
constructor(server, options) {
14+
super();
1315
this.server = server;
1416
this.id = uuid.v4();
1517
this.log = options.log.child({id: this.id, ip: this.ip});

0 commit comments

Comments
 (0)