Have build remove trailing spaces in lines.

Former-commit-id: 580650186c9661b900ebbe846e13ba194fd2c0bc
This commit is contained in:
John-David Dalton
2013-08-07 19:38:52 -07:00
parent 3d4f58d564
commit 7371f8927c
4 changed files with 28 additions and 28 deletions

View File

@@ -769,12 +769,12 @@
var shimKeys = function(object) {
var index, iterable = object, result = [];
if (!iterable) return result;
if (!(objectTypes[typeof object])) return result;
if (!(objectTypes[typeof object])) return result;
for (index in iterable) {
if (hasOwnProperty.call(iterable, index)) {
result.push(index);
result.push(index);
}
}
}
return result
};
@@ -986,8 +986,8 @@
if (!iterable) return result;
if (!objectTypes[typeof iterable]) return result;
for (index in iterable) {
if (callback(iterable[index], index, collection) === indicatorObject) return result;
}
if (callback(iterable[index], index, collection) === indicatorObject) return result;
}
return result
};
@@ -1018,9 +1018,9 @@
if (!objectTypes[typeof iterable]) return result;
for (index in iterable) {
if (hasOwnProperty.call(iterable, index)) {
if (callback(iterable[index], index, collection) === indicatorObject) return result;
if (callback(iterable[index], index, collection) === indicatorObject) return result;
}
}
}
return result
};