From 3fa3a232deec88a9f9fe0bf05d7b32bf96257977 Mon Sep 17 00:00:00 2001
From: "Aydrian J. Howard" <aydrian@gmail.com>
Date: Thu, 6 Aug 2015 10:35:19 -0400
Subject: [PATCH] Removed comments.

---
 lib/toApiFormat.js | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/lib/toApiFormat.js b/lib/toApiFormat.js
index 0faa2d9..c9799d0 100644
--- a/lib/toApiFormat.js
+++ b/lib/toApiFormat.js
@@ -12,12 +12,6 @@ module.exports = function toApiFormat(source) {
     if(Array.isArray(source) && _.isPlainObject(source[0])) {
       dest = [];
       for(var i = 0; i < source.length; i++) {
-        // Exclude appropriately
-        /*if( -1 === excludeList.indexOf(source[i])) {
-          dest.push(toApiFormat(source[i]));
-        } else {
-          dest.push(source[i]);
-        }*/
         dest.push(toApiFormat(source[i]));
       }
       return dest;