Bump to v3.0.1.

This commit is contained in:
jdalton
2015-01-26 20:13:55 -08:00
parent 9b7c4d6761
commit 3b2df88eab
14 changed files with 63 additions and 42 deletions

View File

@@ -23,6 +23,9 @@ define(['../internal/LazyWrapper', '../internal/LodashWrapper', './thru'], funct
function wrapperReverse() {
var value = this.__wrapped__;
if (value instanceof LazyWrapper) {
if (this.__actions__.length) {
value = new LazyWrapper(this);
}
return new LodashWrapper(value.reverse());
}
return this.thru(function(value) {