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