Code coverage report for lib/deps/ajax/prequest.js

Statements: 100% (3 / 3)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (3 / 3)      Ignored: none     

All files » lib/deps/ajax/ » prequest.js
1 2 3 4 5 6 7 8 9    2   2   24977    
'use strict';
 
var ajax = require('./ajax-core');
 
module.exports = function(opts, callback) {
  // do nothing; all the action is in prerequest-browser.js
  return ajax(opts, callback);
};