2015-03-16 08:40:32 -07:00

9 lines
133 B
JavaScript

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