- _.fromPairs(pairs)
与_.toPairs正好相反;这个方法返回一个由键值对pairs构成的对象。
_.fromPairs([['fred', 30], ['barney', 40]]);
// => { 'fred': 30, 'barney': 40 }
Object.fromEntries()有同样的功能,只是在高版本浏览器才支持:
- _toPairs(object)
function Foo() {this.a = 1;this.b = 2;
}Foo.prototype.c = 3;_.toPairs(new Foo);
// => [['a', 1], ['b', 2]] (iteration order is not guaranteed)