double quotes

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2018-12-15 11:19:48 -02:00
parent 8ce237903e
commit 2a7d3ba558
2 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,3 @@
var Cloudevent = require('./lib/cloudevent.js'); var Cloudevent = require("./lib/cloudevent.js");
module.exports = Cloudevent; module.exports = Cloudevent;

View File

@ -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;