import forceReflow from 'bianco.force-reflow'
// force the reflow on a single element
forceReflow(document.querySelector('#my-id'))
Force the reflow of one or a list of DOM elements
el
(HTMLElement | NodeList | Array) single or multiple DOM elements
import forceReflow from 'bianco.force-reflow'
// force reflow on a list of elements
forceReflow(document.querySelectorAll('.list'))
// force reflow on a single element
forceReflow(document.querySelector('.post'))
Returns any the argument received