Fix code style issues

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2019-01-18 23:48:30 -02:00
parent f22eabf549
commit ba2d47fcda
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ HTTPBinary.prototype.emit = function(cloudevent){
// Have extensions?
var exts = cloudevent.getExtensions();
for(ext in exts){
for(var ext in exts){
_headers["ce-" + ext] = exts[ext];
}

View File

@ -112,7 +112,7 @@ Cloudevent.prototype.addExtension = function(key, value){
Cloudevent.prototype.getExtensions = function() {
return this.extensions;
}
};
/*