From 661d005b43cf9914d7245f0f2e361607efad5bda Mon Sep 17 00:00:00 2001 From: Christoph Gysin Date: Fri, 15 Sep 2017 22:22:49 +0300 Subject: [PATCH] aws-multiple-runtime: fix linting issues --- aws-multiple-runtime/api/handler.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/aws-multiple-runtime/api/handler.js b/aws-multiple-runtime/api/handler.js index dba76d579..f2f4316d4 100644 --- a/aws-multiple-runtime/api/handler.js +++ b/aws-multiple-runtime/api/handler.js @@ -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); +};