| 427 | })); |
| 428 | |
| 429 | export const stop = elements => { |
| 430 | const {all} = rAF; |
| 431 | const nodes = getElements(elements); |
| 432 | all.forEach(object => { |
| 433 | if (nodes.includes(object.element)) all.delete(object); |
| 434 | }); |
| 435 | return nodes; |
| 436 | }; |
nothing calls this directly
no test coverage detected