call.js 111 B

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