Code style: missing semicolon
Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
parent
9903c12be8
commit
56b54cdf23
|
@ -88,7 +88,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);
|
||||||
|
@ -124,6 +124,6 @@ Receiver.prototype.parse = function(payload, headers) {
|
||||||
);
|
);
|
||||||
|
|
||||||
return cloudevent;
|
return cloudevent;
|
||||||
}
|
};
|
||||||
|
|
||||||
module.exports = Receiver;
|
module.exports = Receiver;
|
||||||
|
|
Loading…
Reference in New Issue