Bump to v3.9.0.

This commit is contained in:
jdalton
2015-05-17 22:50:59 -07:00
parent d7b2bedafc
commit 30daf83737
89 changed files with 527 additions and 567 deletions

View File

@@ -1,4 +1,5 @@
import keys from './keys';
import toObject from '../internal/toObject';
/**
* Creates a two dimensional array of the key-value pairs for `object`,
@@ -15,6 +16,8 @@ import keys from './keys';
* // => [['barney', 36], ['fred', 40]] (iteration order is not guaranteed)
*/
function pairs(object) {
object = toObject(object);
var index = -1,
props = keys(object),
length = props.length,