UNPKG

taro-sockjs-client

Version:
14 lines (11 loc) 269 B
import inherits from '../utils/inherits' import Event from './event' function CloseEvent() { Event.call(this) this.initEvent('close', false, false) this.wasClean = false this.code = 0 this.reason = '' } inherits(CloseEvent, Event) export default CloseEvent