ref: ee9f9d3ea405fb6e546ce68cc63df4008c7bd4f8
dir: /domino-lib/CustomEvent.js/
"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 }
});