Sha256: ecbebc16b58b20790b70760732d135132a7f5188a9a4bda0c192b80da31afd88
Contents?: true
Size: 295 Bytes
Versions: 34
Compression:
Stored size: 295 Bytes
Contents
'use strict'; var inherits = require('inherits') , Event = require('./event') ; function CloseEvent() { Event.call(this); this.initEvent('close', false, false); this.wasClean = false; this.code = 0; this.reason = ''; } inherits(CloseEvent, Event); module.exports = CloseEvent;
Version data entries
34 entries across 33 versions & 12 rubygems