Latest
function default
import { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/zipObject.js";

This method is like _.fromPairs except that it accepts two arrays, one of property identifiers and one of corresponding values.

Examples

_.zipObject(['a', 'b'], [1, 2]); // => { 'a': 1, 'b': 2 }

Parameters

props
values