double quotes
Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
parent
8ce237903e
commit
2a7d3ba558
3
index.js
3
index.js
|
@ -1,4 +1,3 @@
|
||||||
var Cloudevent = require('./lib/cloudevent.js');
|
var Cloudevent = require("./lib/cloudevent.js");
|
||||||
|
|
||||||
module.exports = Cloudevent;
|
module.exports = Cloudevent;
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
var uuid = require('uuid/v4');
|
var uuid = require("uuid/v4");
|
||||||
|
|
||||||
function Spec_0_1(_caller){
|
function Spec_0_1(_caller){
|
||||||
this.payload = {
|
this.payload = {
|
||||||
cloudEventsVersion: '0.1',
|
cloudEventsVersion: "0.1",
|
||||||
eventID: uuid()
|
eventID: uuid()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -81,4 +81,3 @@ Spec_0_1.prototype.addExtension = function(key, value){
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Spec_0_1;
|
module.exports = Spec_0_1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue