7 lines
118 B
JavaScript
7 lines
118 B
JavaScript
var obj = {
|
|
foo: function foo() {
|
|
this.bar.apply(this, arguments);
|
|
this.blah.apply(this, arguments);
|
|
}
|
|
};
|