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