shithub: mycel

ref: bcce6fc26675a60c9fc0a4cf41f76f6258c789bc
dir: /domino-lib/CustomEvent.js/

View raw version
"use strict";
module.exports = CustomEvent;

var Event = require('./Event');

function CustomEvent(type, dictionary) {
  // Just use the superclass constructor to initialize
  Event.call(this, type, dictionary);
}
CustomEvent.prototype = Object.create(Event.prototype, {
  constructor: { value: CustomEvent }
});