ref: 9ea2a17822bdb50432247821c07d55e596a5fc70
dir: /domino/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 }
});