Code style: missing semicolon

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2019-07-23 13:43:58 -03:00
parent 9903c12be8
commit 56b54cdf23
1 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,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);
@ -124,6 +124,6 @@ Receiver.prototype.parse = function(payload, headers) {
);
return cloudevent;
}
};
module.exports = Receiver;