From d61442cc0da47c31ec644bacdf115a974d43a5b6 Mon Sep 17 00:00:00 2001
From: Adhidarma Hadiwinoto <me@adhisimon.org>
Date: Mon, 17 Feb 2020 12:27:51 +0700
Subject: [PATCH] Remove some 'use strict'

---
 lib/command-handler/buy.js   | 2 --
 lib/command-handler/index.js | 2 --
 lib/http-listener.js         | 2 --
 3 files changed, 6 deletions(-)

diff --git a/lib/command-handler/buy.js b/lib/command-handler/buy.js
index dd9c8c3..5d62dea 100644
--- a/lib/command-handler/buy.js
+++ b/lib/command-handler/buy.js
@@ -1,5 +1,3 @@
-"use strict";
-
 const moment = require('moment');
 
 const logger = require('komodo-sdk/logger');
diff --git a/lib/command-handler/index.js b/lib/command-handler/index.js
index 5f5a8ff..485c428 100644
--- a/lib/command-handler/index.js
+++ b/lib/command-handler/index.js
@@ -1,5 +1,3 @@
-"use strict";
-
 const logger = require('komodo-sdk/logger');
 
 const commandParser = require('../command-parser');
diff --git a/lib/http-listener.js b/lib/http-listener.js
index c0eb853..4b0c868 100644
--- a/lib/http-listener.js
+++ b/lib/http-listener.js
@@ -1,5 +1,3 @@
-"use strict";
-
 const express = require('express');
 const bodyParser = require('body-parser');
 const ipfilter = require('express-ipfilter').IpFilter
-- 
1.9.0