recall.js 130 Bytes
module.exports = function recall(context, args) {
  var fn = args.callee
	return function() { return fn.apply(context, args); }
}