migi
Version:
A JavaScript MVVM on JSX
16 lines (11 loc) • 369 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var Cb = function Cb(context, cb) {
_classCallCheck(this, Cb);
this.context = context;
this.cb = cb;
};
exports.default = Cb;
;