ref: 88687b3cae7a352e9606d775b130b8b0d3d6d9c4
dir: /cmd/gojafs/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 }
});