Skip to content

Commit

Permalink
aws-multiple-runtime: fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
christophgysin committed Sep 15, 2017
1 parent 991db05 commit 661d005
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions aws-multiple-runtime/api/handler.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
"use strict"
'use strict';

module.exports.timestamp = (event, context, callback) => {
const response = {
statusCode: 200,
headers: {
"Content-Type": "text/plain"
'Content-Type': 'text/plain',
},
body: parseInt(Date.now() / 1000)
}
body: parseInt(Date.now() / 1000, 10),
};

callback(null, response)
}
callback(null, response);
};

0 comments on commit 661d005

Please sign in to comment.