_.toPairs(object)
functionFoo() { this.a=1; this.b=2; } Foo.prototype.c=3; _.toPairs(newFoo); // => [['a', 1], ['b', 2]] (iteration order is not guaranteed)
_.toPairs(object)
functionFoo() { this.a=1; this.b=2; } Foo.prototype.c=3; _.toPairs(newFoo); // => [['a', 1], ['b', 2]] (iteration order is not guaranteed)