Bump to v4.14.2.

This commit is contained in:
John-David Dalton
2016-08-07 21:23:34 -07:00
parent 6d4f76888f
commit cbf5cb1162
74 changed files with 233 additions and 256 deletions

View File

@@ -1,8 +1,8 @@
import baseKeys from './_baseKeys.js';
import getTag from './_getTag.js';
import isArrayLike from './isArrayLike.js';
import isObjectLike from './isObjectLike.js';
import isString from './isString.js';
import keys from './keys.js';
import stringSize from './_stringSize.js';
/** `Object#toString` result references. */
@@ -44,7 +44,7 @@ function size(collection) {
return collection.size;
}
}
return keys(collection).length;
return baseKeys(collection).length;
}
export default size;