()
| 1568 | |
| 1569 | // advance the transition to the next step |
| 1570 | var next = function next() { |
| 1571 | if (nextCalled) { |
| 1572 | warn$1('transition.next() should be called only once.'); |
| 1573 | return; |
| 1574 | } |
| 1575 | nextCalled = true; |
| 1576 | if (transition.aborted) { |
| 1577 | cleanup && cleanup(); |
| 1578 | return; |
| 1579 | } |
| 1580 | cb && cb(); |
| 1581 | }; |
| 1582 | |
| 1583 | var nextWithBoolean = function nextWithBoolean(res) { |
| 1584 | if (typeof res === 'boolean') { |
no test coverage detected