ref: 8b6f2304278271517909d2a699a8e62b50c5968e
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 } });