Bump to v3.1.0.

This commit is contained in:
jdalton
2015-02-01 22:09:14 -08:00
parent 891d0482c6
commit d5f4043617
21 changed files with 74 additions and 37 deletions

View File

@@ -1,3 +1,4 @@
import baseClone from '../internal/baseClone';
import baseMatches from '../internal/baseMatches';
/**
@@ -26,7 +27,7 @@ import baseMatches from '../internal/baseMatches';
* // => { 'user': 'barney', 'age': 36 }
*/
function matches(source) {
return baseMatches(source, true);
return baseMatches(baseClone(source, true));
}
export default matches;