Fix code style issues
Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
parent
f22eabf549
commit
ba2d47fcda
|
@ -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];
|
||||
}
|
||||
|
||||
|
|
|
@ -112,7 +112,7 @@ Cloudevent.prototype.addExtension = function(key, value){
|
|||
|
||||
Cloudevent.prototype.getExtensions = function() {
|
||||
return this.extensions;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue