Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
352 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | var inherits = require('inherits')
|
---|
4 | , XhrDriver = require('../driver/xhr')
|
---|
5 | ;
|
---|
6 |
|
---|
7 | function XHRLocalObject(method, url, payload /*, opts */) {
|
---|
8 | XhrDriver.call(this, method, url, payload, {
|
---|
9 | noCredentials: true
|
---|
10 | });
|
---|
11 | }
|
---|
12 |
|
---|
13 | inherits(XHRLocalObject, XhrDriver);
|
---|
14 |
|
---|
15 | XHRLocalObject.enabled = XhrDriver.enabled;
|
---|
16 |
|
---|
17 | module.exports = XHRLocalObject;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.