UNPKG

314 BJavaScriptView Raw
1var CancelController = require('../class/CancelController');
2
3/**
4 * Create a new instance of `CancelController`.
5 *
6 * @returns {CancelController} Returns an new instance of `CancelController`.
7 */
8function createCancelController() {
9 return new CancelController();
10}
11
12module.exports = createCancelController;