ref: 96375d3675de6ca7e7cc4d3a841d0c6a61cd7d73
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 } });