File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -22,51 +22,51 @@ Cloudevent.prototype.format = function(){
22
22
23
23
// Then, format
24
24
return this . formatter . format ( this . spec . payload ) ;
25
- }
25
+ } ;
26
26
27
27
Cloudevent . prototype . toString = function ( ) {
28
28
return this . formatter . toString ( this . spec . payload ) ;
29
- }
29
+ } ;
30
30
31
31
Cloudevent . prototype . type = function ( type ) {
32
32
this . spec . type ( type ) ;
33
33
return this ;
34
- }
34
+ } ;
35
35
36
36
Cloudevent . prototype . source = function ( _source ) {
37
37
this . spec . source ( _source ) ;
38
38
return this ;
39
- }
39
+ } ;
40
40
41
41
Cloudevent . prototype . id = function ( _id ) {
42
42
this . spec . id ( _id ) ;
43
43
return this ;
44
- }
44
+ } ;
45
45
46
46
Cloudevent . prototype . time = function ( _time ) {
47
47
this . spec . time ( _time ) ;
48
48
return this ;
49
- }
49
+ } ;
50
50
51
51
Cloudevent . prototype . schemaurl = function ( _schemaurl ) {
52
52
this . spec . schemaurl ( _schemaurl ) ;
53
53
return this ;
54
- }
54
+ } ;
55
55
56
56
Cloudevent . prototype . contenttype = function ( _contenttype ) {
57
57
this . spec . contenttype ( _contenttype ) ;
58
58
return this ;
59
- }
59
+ } ;
60
60
61
61
Cloudevent . prototype . data = function ( _data ) {
62
62
this . spec . data ( _data ) ;
63
63
return this ;
64
- }
64
+ } ;
65
65
66
66
Cloudevent . prototype . addExtension = function ( key , value ) {
67
67
this . spec . addExtension ( key , value ) ;
68
68
return this ;
69
- }
69
+ } ;
70
70
71
71
/*
72
72
* Export the specs
You can’t perform that action at this time.
0 commit comments