Update _.createCallback dependencies and fix typo in removeFromCreateIterator.

Former-commit-id: 8478aadcdcb3fbf30a481de1bc515510959a2396
This commit is contained in:
John-David Dalton
2013-07-24 22:54:55 -07:00
parent 57fc027f77
commit 56ff8755d4
6 changed files with 7 additions and 12 deletions

View File

@@ -4259,7 +4259,7 @@
end = start;
start = 0;
}
// use `Array(length)` so V8 will avoid the slower "dictionary" mode
// use `Array(length)` so engines, like Chakra and V8, avoid slower modes
// http://youtu.be/XAqIpGU8ZZk#t=17m25s
var index = -1,
length = nativeMax(0, ceil((end - start) / step)),

2
dist/lodash.js vendored
View File

@@ -3936,7 +3936,7 @@
end = start;
start = 0;
}
// use `Array(length)` so V8 will avoid the slower "dictionary" mode
// use `Array(length)` so engines, like Chakra and V8, avoid slower modes
// http://youtu.be/XAqIpGU8ZZk#t=17m25s
var index = -1,
length = nativeMax(0, ceil((end - start) / step)),

View File

@@ -2995,7 +2995,7 @@
end = start;
start = 0;
}
// use `Array(length)` so V8 will avoid the slower "dictionary" mode
// use `Array(length)` so engines, like Chakra and V8, avoid slower modes
// http://youtu.be/XAqIpGU8ZZk#t=17m25s
var index = -1,
length = nativeMax(0, ceil((end - start) / step)),