(clearStyleSheets?: boolean)
| 116 | * animation's stylesheets from the DOM. |
| 117 | */ |
| 118 | const cleanUp = (clearStyleSheets?: boolean) => { |
| 119 | cleanUpElements(); |
| 120 | |
| 121 | if (clearStyleSheets) { |
| 122 | cleanUpStyleSheets(); |
| 123 | } |
| 124 | }; |
| 125 | |
| 126 | const resetFlags = () => { |
| 127 | shouldForceLinearEasing = false; |
no test coverage detected