From 56b54cdf233922f26e2b8bdaf10e995d60dbacdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabio=20Jos=C3=A9?= Date: Tue, 23 Jul 2019 13:43:58 -0300 Subject: [PATCH] Code style: missing semicolon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabio José --- lib/bindings/http/receiver_structured_0_2.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bindings/http/receiver_structured_0_2.js b/lib/bindings/http/receiver_structured_0_2.js index e1f08fe..cc81c68 100644 --- a/lib/bindings/http/receiver_structured_0_2.js +++ b/lib/bindings/http/receiver_structured_0_2.js @@ -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;