Bump to v3.9.0.

This commit is contained in:
John-David Dalton
2015-12-16 17:50:42 -08:00
parent 26837e7fe2
commit 81e41ca0c8
89 changed files with 1033 additions and 1088 deletions

View File

@@ -1,4 +1,4 @@
define(['./keys'], function(keys) {
define(['./keys', '../internal/toObject'], function(keys, toObject) {
/**
* Creates a two dimensional array of the key-value pairs for `object`,
@@ -15,6 +15,8 @@ define(['./keys'], function(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,