UNPKG

zmp-ui

Version:

Zalo Mini App framework

8 lines 210 B
export var getImageDimentions = function getImageDimentions(src) { var imgClone = document.createElement("img"); imgClone.src = src; return { width: imgClone.width, height: imgClone.height }; };