aditollo/grunt-svgzr

Problema di concorrenza

Closed this issue · 0 comments

Ciao, visto che le righe

parseString(srcSvg, function (err, result) {
    obj.width = result.svg.$.width;
    obj.height = result.svg.$.height;
});

sono frutto di una callback, per sua natura asincrona, non è detto che le righe dopo

if(obj.width && obj.height) {
    obj.width = (obj.width.indexOf('px') > -1) ? obj.width : obj.width + "px";
    obj.height = (obj.height.indexOf('px') > -1) ? obj.height : obj.height + "px";

vengano effettivamente eseguite dopo