Code style: missing semicolon

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2019-07-23 09:28:20 -03:00
parent ba573fa94f
commit 68530adebb
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ Receiver.prototype.check = function(payload, headers) {
}
// No erros! Its contains the minimum required attributes
}
};
Receiver.prototype.parse = function(payload, headers) {
this.check(payload, headers);
@ -151,6 +151,6 @@ Receiver.prototype.parse = function(payload, headers) {
// return the result
return cloudevent;
}
};
module.exports = Receiver;