UNPKG

251 BJavaScriptView Raw
1// reading a dimension prop will cause the browser to recalculate,
2// which will let our animations work
3export default function triggerBrowserReflow(node) {
4 // eslint-disable-next-line @typescript-eslint/no-unused-expressions
5 node.offsetHeight;
6}
\No newline at end of file