blob: 50bbe1a4f195332de866e0bdb56b8a2029331f6b [file] [log] [blame]
for (var key in objects) {
if (objects.hasOwnProperty(key)) {
hey();
}
}
// Empty for in block like the one found in jQuery
// JSHINT would crash upon finding this and wouldn't continue
// GH-336
for ( key in objects ) { }
// Let's make sure we continue scanning the rest of the file.
for (key in objects) {
hey();
}