Sha256: 27c7cdfc6c02842cccd0209c672fad8d1bf1d01fd99853c33e3c78b7f90099b4
Contents?: true
Size: 352 Bytes
Versions: 34
Compression:
Stored size: 352 Bytes
Contents
'use strict'; var inherits = require('inherits') , XhrDriver = require('../driver/xhr') ; function XHRLocalObject(method, url, payload /*, opts */) { XhrDriver.call(this, method, url, payload, { noCredentials: true }); } inherits(XHRLocalObject, XhrDriver); XHRLocalObject.enabled = XhrDriver.enabled; module.exports = XHRLocalObject;
Version data entries
34 entries across 33 versions & 12 rubygems