Bump to v3.0.1.

This commit is contained in:
jdalton
2015-01-26 20:44:45 -08:00
parent f9606b394c
commit bbec03c4d5
14 changed files with 64 additions and 47 deletions

View File

@@ -19,7 +19,8 @@ function baseSlice(array, start, end) {
if (end < 0) {
end += length;
}
length = start > end ? 0 : (end - start);
length = start > end ? 0 : (end - start) >>> 0;
start >>>= 0;
var result = Array(length);
while (++index < length) {