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