Bump to v4.0.0.

This commit is contained in:
John-David Dalton
2015-09-17 17:52:09 -07:00
parent 1d77dfa4b7
commit 54e7baecc3
675 changed files with 11257 additions and 8085 deletions

View File

@@ -1,15 +1,15 @@
import isStrictComparable from './isStrictComparable';
import pairs from '../object/pairs';
import toPairs from '../toPairs';
/**
* Gets the propery names, values, and compare flags of `object`.
* Gets the property names, values, and compare flags of `object`.
*
* @private
* @param {Object} object The object to query.
* @returns {Array} Returns the match data of `object`.
*/
function getMatchData(object) {
var result = pairs(object),
var result = toPairs(object),
length = result.length;
while (length--) {