UNPKG

taro-sockjs-client

Version:
13 lines (8 loc) 324 B
import inherits from '../../utils/inherits' import XhrDriver from '../driver/xhr' function XHRCorsObject(method, url, payload, opts) { XhrDriver.call(this, method, url, payload, opts) } inherits(XHRCorsObject, XhrDriver) XHRCorsObject.enabled = XhrDriver.enabled && XhrDriver.supportsCORS export default XHRCorsObject