Code style: missing semicolon
Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
parent
ba573fa94f
commit
68530adebb
|
@ -101,7 +101,7 @@ Receiver.prototype.check = function(payload, headers) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// No erros! Its contains the minimum required attributes
|
// No erros! Its contains the minimum required attributes
|
||||||
}
|
};
|
||||||
|
|
||||||
Receiver.prototype.parse = function(payload, headers) {
|
Receiver.prototype.parse = function(payload, headers) {
|
||||||
this.check(payload, headers);
|
this.check(payload, headers);
|
||||||
|
@ -151,6 +151,6 @@ Receiver.prototype.parse = function(payload, headers) {
|
||||||
|
|
||||||
// return the result
|
// return the result
|
||||||
return cloudevent;
|
return cloudevent;
|
||||||
}
|
};
|
||||||
|
|
||||||
module.exports = Receiver;
|
module.exports = Receiver;
|
||||||
|
|
Loading…
Reference in New Issue