From 3590a06f40bcfc55288e5d741958bc6a072dff05 Mon Sep 17 00:00:00 2001 From: jdalton Date: Tue, 17 Mar 2015 16:45:01 -0700 Subject: [PATCH] Update `_.zipObject` docs to tie into `_.pairs`. [ci skip] --- lodash.src.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index a30344a89..a33679f6f 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -5759,9 +5759,10 @@ var zip = restParam(unzip); /** - * Creates an object composed from arrays of property names and values. Provide - * either a single two dimensional array, e.g. `[[key1, value1], [key2, value2]]` - * or two arrays, one of property names and one of corresponding values. + * The inverse of `_.pairs`; this method returns an object composed from arrays + * of property names and values. Provide either a single two dimensional array, + * e.g. `[[key1, value1], [key2, value2]]` or two arrays, one of property names + * and one of corresponding values. * * @static * @memberOf _