taro-sockjs-client
Version:
sockjs-client for Taro
13 lines (8 loc) • 324 B
JavaScript
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