From 7e2d11fcdd987348f715fb25401b6ddb214bf5c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabio=20Jos=C3=A9?= Date: Sun, 9 Jun 2019 20:56:51 -0300 Subject: [PATCH] Structure for formats impl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabio José --- lib/formats/json_0_1.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 lib/formats/json_0_1.js diff --git a/lib/formats/json_0_1.js b/lib/formats/json_0_1.js deleted file mode 100644 index dc5ffa5..0000000 --- a/lib/formats/json_0_1.js +++ /dev/null @@ -1,14 +0,0 @@ - -function JSONFormatter(){ - -} - -JSONFormatter.prototype.format = function(payload){ - return payload; -}; - -JSONFormatter.prototype.toString = function(payload){ - return JSON.stringify(payload); -}; - -module.exports = JSONFormatter;