Skip to content

Commit 3fa3a23

Browse files
committed
Removed comments.
1 parent f536469 commit 3fa3a23

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

lib/toApiFormat.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ module.exports = function toApiFormat(source) {
1212
if(Array.isArray(source) && _.isPlainObject(source[0])) {
1313
dest = [];
1414
for(var i = 0; i < source.length; i++) {
15-
// Exclude appropriately
16-
/*if( -1 === excludeList.indexOf(source[i])) {
17-
dest.push(toApiFormat(source[i]));
18-
} else {
19-
dest.push(source[i]);
20-
}*/
2115
dest.push(toApiFormat(source[i]));
2216
}
2317
return dest;

0 commit comments

Comments
 (0)