mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
5 lines
225 B
JavaScript
Vendored
5 lines
225 B
JavaScript
Vendored
// reading a dimension prop will cause the browser to recalculate,
|
|
// which will let our animations work
|
|
export default function triggerBrowserReflow(node) {
|
|
node.offsetHeight; // eslint-disable-line no-unused-expressions
|
|
} |