UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

10 lines 270 B
export const imageWidth = (image) => { const img = new Image(); return new Promise((resolve, reject) => { img.onload = function () { resolve(img.width); }; img.src = image.uri; }); }; //# sourceMappingURL=imageWidth.js.map