call.js 115 B

1234567
  1. exports.call = function (func) {
  2. return func();
  3. };
  4. exports.constructor = function () {
  5. this.test = 'test';
  6. };