Rebuild docs and files.

Former-commit-id: 59596707224acabb767b87078d69363c293eec2d
This commit is contained in:
John-David Dalton
2013-05-14 09:15:48 -07:00
parent bad40b6125
commit fdc9d5f1fd
7 changed files with 518 additions and 547 deletions

View File

@@ -126,6 +126,7 @@
floor = Math.floor,
hasOwnProperty = objectProto.hasOwnProperty,
push = arrayProto.push,
propertyIsEnumerable = objectProto.propertyIsEnumerable,
setTimeout = window.setTimeout,
toString = objectProto.toString;
@@ -511,10 +512,10 @@
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);
if (hasOwnProperty.call(iterable, index)) {
result.push(index);
}
}
return result
@@ -756,8 +757,8 @@
if (!iterable) return result;
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 (hasOwnProperty.call(iterable, index)) {
if (callback(iterable[index], index, collection) === indicatorObject) return result;
}
}
return result
@@ -3874,8 +3875,13 @@
if (max == null) {
max = min;
min = 0;
} else {
max = +max || 0;
}
return min + floor(nativeRandom() * ((+max || 0) - min + 1));
var rand = nativeRandom();
return (min % 1 || max % 1)
? min + nativeMin(rand * (max - min + parseFloat('1e-' + ((rand +'').length - 1))), max)
: min + floor(rand * (max - min + 1));
}
/**