ref: 39c7730e28dfbd5ee1b8a27ddf90bc7be493c169
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 } });