x-http-client
Version:
An http client to simplify sending requests (HTTP & JSONP) in the browser.
13 lines (10 loc) • 314 B
JavaScript
var CancelController = require('../class/CancelController');
/**
* Create a new instance of `CancelController`.
*
* @returns {CancelController} Returns an new instance of `CancelController`.
*/
function createCancelController() {
return new CancelController();
}
module.exports = createCancelController;