UNPKG

357 BJavaScriptView Raw
1"use strict";
2
3exports.__esModule = true;
4exports.default = triggerBrowserReflow;
5
6// reading a dimension prop will cause the browser to recalculate,
7// which will let our animations work
8function triggerBrowserReflow(node) {
9 // eslint-disable-next-line @typescript-eslint/no-unused-expressions
10 node.offsetHeight;
11}
12
13module.exports = exports["default"];
\No newline at end of file