Skip to content

Commit

Permalink
Removed comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
aydrian committed Aug 6, 2015
1 parent f536469 commit 3fa3a23
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions lib/toApiFormat.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3fa3a23

Please sign in to comment.