x-http-client
Version:
An http client to make it easier to send requests (including JSONP requests) to the server.
13 lines (10 loc) • 322 B
JavaScript
var CancelController = require('../class/CancelController');
/**
* Create a new instance of `CancelController`.
*
* @returns {CancelController} Returns an new instance of `CancelController`.
*/
var createCancelController = function () {
return new CancelController();
};
module.exports = createCancelController;