2015-03-17 11:31:09 +11:00

9 lines
133 B
JavaScript

"use strict";
var obj = {
foo: function foo() {
this.bar.apply(this, arguments);
this.blah.apply(this, arguments);
}
};