()
| 675 | } |
| 676 | |
| 677 | function process() { |
| 678 | var start = (new Date()).getTime(); |
| 679 | |
| 680 | while ( config.queue.length && !config.blocking ) { |
| 681 | if ( config.updateRate <= 0 || (((new Date()).getTime() - start) < config.updateRate) ) { |
| 682 | config.queue.shift()(); |
| 683 | |
| 684 | } else { |
| 685 | setTimeout( process, 13 ); |
| 686 | break; |
| 687 | } |
| 688 | } |
| 689 | } |
| 690 | |
| 691 | function saveGlobal() { |
| 692 | config.pollution = []; |
no outgoing calls
no test coverage detected