all files / lib/deps/ajax/ prequest.js

100% Statements 9/9
75% Branches 3/4
100% Functions 2/2
100% Lines 8/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19                  22692×    
'use strict';
 
Object.defineProperty(exports, "__esModule", {
  value: true
});
 
var _ajaxCore = require('./ajaxCore');
 
var _ajaxCore2 = _interopRequireDefault(_ajaxCore);
 
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
 
function ajax(opts, callback) {
  // do nothing; all the action is in prerequest-browser.js
  return (0, _ajaxCore2.default)(opts, callback);
}
 
exports.default = ajax;
module.exports = exports['default'];