2015-04-21 17:38:17 +00:00
|
|
|
/**
|
|
|
|
* Represents a cancellation caused by navigating away
|
|
|
|
* before the previous transition has fully resolved.
|
|
|
|
*/
|
2015-04-29 09:02:32 +00:00
|
|
|
"use strict";
|
|
|
|
|
2015-04-21 17:38:17 +00:00
|
|
|
function Cancellation() {}
|
|
|
|
|
|
|
|
module.exports = Cancellation;
|