Repository URL to install this package:
Version:
0.9.5 ▾
|
/**
* @tutorial https://stackoverflow.com/questions/3971841/how-to-resize-images-proportionally-keeping-the-aspect-ratio
*/
function getWidthHeight(domNodeRef: Element) {
const width = domNodeRef.style.width
const height = domNodeRef.style.width
return {
width,
height,
}
}
export { getWidthHeight }
export default getWidthHeight