jdalton
|
56c5ebcb71
|
Ensure the result of _.difference is based on the values of the first param only. [#1038]
|
2015-03-10 21:31:46 -07:00 |
|
jdalton
|
028234ba86
|
Update guard info in _.reduce docs. [ci skip]
|
2015-03-10 09:21:38 -07:00 |
|
jdalton
|
f063b4d231
|
Add isIterateeCall guards to _.every and _.some. [closes #1035]
|
2015-03-10 09:21:01 -07:00 |
|
Teoman Soygul
|
508f27cc32
|
Fix _.property documentation typo. [ci skip]
|
2015-03-10 08:44:54 -07:00 |
|
jdalton
|
d4783170e5
|
Minor cleanup of setting __actions__ in _.mixin.
|
2015-03-09 08:33:19 -07:00 |
|
jdalton
|
51e459b386
|
Bump to v3.5.0.
3.5.0
|
2015-03-08 17:57:42 -07:00 |
|
jdalton
|
1253d254af
|
Rebuild lodash and docs.
|
2015-03-08 17:57:22 -07:00 |
|
jdalton
|
5e70574396
|
Add parentheses and cleanup more complex code snippets.
|
2015-03-08 17:45:53 -07:00 |
|
jdalton
|
b5dce2f74b
|
Optimize createBindWrapper, createPartialWrapper, and createHybridWrapper.
|
2015-03-08 01:00:04 -08:00 |
|
jdalton
|
6113da3e68
|
Remove unneeded tests.
|
2015-03-07 23:27:21 -08:00 |
|
jdalton
|
faf6406289
|
Ensure lazy drop when applied after filter works correctly. [closes #1026]
|
2015-03-07 23:20:26 -08:00 |
|
jdalton
|
7c443431d9
|
Add private guard param doc to _.sortByOrder. [ci skip]
|
2015-03-07 11:11:24 -08:00 |
|
jdalton
|
0f201e3fd8
|
Add more chaining tests join, replace, & split.
|
2015-03-07 00:30:42 -08:00 |
|
jdalton
|
bf96c30187
|
Cleanup string methods added to LodashWrapper.
|
2015-03-07 00:23:17 -08:00 |
|
octref
|
eb1b7b914a
|
Add split and replace to LodashWrapper. [closes #1016]
|
2015-03-06 23:11:52 -08:00 |
|
octref
|
135bc2de52
|
Adjust _.sortByOrder doc example to better show effect. [ci skip]
|
2015-03-06 12:02:30 -08:00 |
|
jdalton
|
ab2269717d
|
Bump to v3.4.0.
3.4.0
|
2015-03-06 00:55:11 -08:00 |
|
jdalton
|
b5a42cfa75
|
Rebuild lodash and docs.
|
2015-03-05 23:01:16 -08:00 |
|
jdalton
|
6693416d0a
|
Tweak _.isEmpty and _.size docs. [ci skip]
|
2015-03-05 22:59:18 -08:00 |
|
jdalton
|
9cdf013933
|
Ensure length hit of for lazy eval is checked on initial lazy call. [closes #997]
|
2015-03-05 22:50:16 -08:00 |
|
jdalton
|
1dfaa30520
|
Add inRange and sortByOrder to lodash doc notes. [ci skip]
|
2015-03-05 08:27:51 -08:00 |
|
jdalton
|
d898fcee75
|
Simplify the root assignment.
|
2015-03-05 07:41:22 -08:00 |
|
jdalton
|
1e647a2058
|
Rename test module for consistency.
|
2015-03-04 08:43:37 -08:00 |
|
jdalton
|
10e379d862
|
Add _.sortByOrder tests.
|
2015-03-04 08:43:37 -08:00 |
|
jdalton
|
ee456493c4
|
Remove argument unrolling in LazyWrapper assignments.
|
2015-03-04 08:43:37 -08:00 |
|
jdalton
|
69e9c7d0be
|
Expand _.defaults test for working with _.reduce.
|
2015-03-04 08:43:37 -08:00 |
|
jdalton
|
adce718d63
|
Another cleanup pass on createAssigner.
|
2015-03-04 08:43:37 -08:00 |
|
jdalton
|
3a94a65f12
|
Tweak root assignment to work with webpack in a web worker. [closes ##313]
|
2015-03-04 08:43:37 -08:00 |
|
jdalton
|
bbe30db1b7
|
Avoid test fails for npm builds.
|
2015-03-03 12:13:48 -08:00 |
|
jdalton
|
68f3c43805
|
Add createComposer to reduce the definition of _.flow and _.flowRight.
|
2015-03-03 11:40:24 -08:00 |
|
jdalton
|
3c99ecda60
|
Move more code out of the try-block in _.attempt.
|
2015-03-03 11:40:24 -08:00 |
|
jdalton
|
b1366696c4
|
Simplify guard check in _.sortByAll.
|
2015-03-03 11:40:24 -08:00 |
|
jdalton
|
534aeb4065
|
Use args alias of arguments in _.difference, _.pull, & _.memoize.
|
2015-03-03 11:40:24 -08:00 |
|
jdalton
|
cc77a36dd9
|
Cleanup createAssigner.
|
2015-03-03 11:40:17 -08:00 |
|
jdalton
|
5991068fdf
|
Add more lazy chaining tests.
|
2015-03-03 09:22:59 -08:00 |
|
octref
|
913778d5ab
|
Let createAssigner get correct customizer
When `_.defaults` is invoked using `_.reduce` / `_.reduceRight`
`createAssigner` discards the customizer, so the effect is
`_.assign` but not `_.defaults`
```
_.reduce([{ 'user': 'barney' }, { 'user': 'fred' }], _.defaults)
// -> {user: "fred"}
_.reduceRight([{ 'user': 'barney' }, { 'user': 'fred' }], _.defaults)
// -> {user: "barney"}
// Fixed
_.reduce([{ 'user': 'barney' }, { 'user': 'fred' }], _.defaults)
// -> {user: "barney"}
_.reduceRight([{ 'user': 'barney' }, { 'user': 'fred' }], _.defaults)
// -> {user: "fred"}
```
|
2015-03-02 21:19:11 -08:00 |
|
h7lin
|
9a8345d4f9
|
Fix doc example in _.partition. [ci skip]
|
2015-03-02 20:25:29 -08:00 |
|
jdalton
|
ba9bd3bc76
|
Better match words with one character. [closes #1012]
|
2015-03-02 20:23:14 -08:00 |
|
jdalton
|
aad0070b77
|
Narrow new LodashWrapper to dropWhile.
|
2015-03-02 20:23:14 -08:00 |
|
jdalton
|
d192e69811
|
Break lazy chains before or . [closes #1011]
|
2015-03-02 09:19:05 -08:00 |
|
jdalton
|
ec8d919b93
|
Cleanup .
|
2015-03-02 09:17:16 -08:00 |
|
octref
|
4ce4f1d758
|
Add _.sortByOrder.
|
2015-03-01 14:04:00 -08:00 |
|
jdalton
|
3aa40d4df6
|
Simplify baseFlatten and always provide a fromIndex.
|
2015-03-01 01:22:38 -08:00 |
|
jdalton
|
ec1be41b62
|
Correct _.flatten benchmark.
|
2015-03-01 01:22:38 -08:00 |
|
jdalton
|
c15d81545a
|
Update chalk in travis.
|
2015-03-01 01:22:38 -08:00 |
|
jdalton
|
1af8b9d16a
|
Cleanup docs of _.flow, _.flowRight, _.defaults, _.range, _.inRange, & _.sum. [ci skip]
|
2015-02-28 21:12:10 -08:00 |
|
jdalton
|
d860cf834d
|
Avoid testing the minified build on PRs in travis.
|
2015-02-28 19:18:38 -08:00 |
|
jdalton
|
63d5a3acbc
|
Optimize baseIndexOf more consistently.
|
2015-02-28 12:42:14 -08:00 |
|
jdalton
|
132aacee89
|
Optimize lazy evaluation for 1 param.
|
2015-02-28 10:11:26 -08:00 |
|
jdalton
|
973038da6a
|
Optimize baseIndexOf, indexOfNaN, and baseFlatten.
|
2015-02-27 21:43:30 -08:00 |
|