Skip to content

Commit

Permalink
Wrap one-line if into {}.
Browse files Browse the repository at this point in the history
  • Loading branch information
fnando committed Mar 16, 2012
1 parent 1b014c6 commit eeec140
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions vendor/assets/javascripts/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,41 @@ if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function(searchElement /*, fromIndex */) {
"use strict";

if (this === void 0 || this === null)
if (this === void 0 || this === null) {
throw new TypeError();
}

var t = Object(this);
var len = t.length >>> 0;
if (len === 0)

if (len === 0) {
return -1;
}

var n = 0;
if (arguments.length > 0) {
n = Number(arguments[1]);
if (n !== n) // shortcut for verifying if it's NaN
if (n !== n) { // shortcut for verifying if it's NaN
n = 0;
else if (n !== 0 && n !== (Infinity) && n !== -(Infinity))
} else if (n !== 0 && n !== (Infinity) && n !== -(Infinity)) {
n = (n > 0 || -1) * Math.floor(Math.abs(n));
}
}

if (n >= len)
if (n >= len) {
return -1;
}

var k = n >= 0
? n
: Math.max(len - Math.abs(n), 0);

for (; k < len; k++) {
if (k in t && t[k] === searchElement)
if (k in t && t[k] === searchElement) {
return k;
}
}

return -1;
};
}
Expand Down

0 comments on commit eeec140

Please sign in to comment.