We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I was working with maps and reached for a _.pairs method to get its key-value pairs and thought it would be handy to support.
_.pairs
var m = new Map([['a', 1], ['b', 2]]); _.pairs(m); // => [['a', 1], ['b', 2]]