b8e081e346fb80b8bb4647dba91ab674b706df072829da8010fc8261247f2a637376f788f0a6f771f64e3f1c48f8d6ce87836ded73623b74ec300f1e882cdb 352 B

1234567891011121314151617
  1. 'use strict';
  2. var inherits = require('inherits')
  3. , XhrDriver = require('../driver/xhr')
  4. ;
  5. function XHRLocalObject(method, url, payload /*, opts */) {
  6. XhrDriver.call(this, method, url, payload, {
  7. noCredentials: true
  8. });
  9. }
  10. inherits(XHRLocalObject, XhrDriver);
  11. XHRLocalObject.enabled = XhrDriver.enabled;
  12. module.exports = XHRLocalObject;