daasd commited on
Commit
fc68712
·
1 Parent(s): fa3f278

Update PNG_info_web.js

Browse files
Files changed (1) hide show
  1. PNG_info_web.js +1 -1
PNG_info_web.js CHANGED
@@ -631,7 +631,7 @@ let imgStorage=(img)=>{
631
  .trim()
632
  .split(",");
633
  resArr.forEach((e) => {
634
- result[e.split(":")[0].replaceAll(" ", "")] = e.split(":")[1].trim();
635
  });
636
  this.result = result;
637
 
 
631
  .trim()
632
  .split(",");
633
  resArr.forEach((e) => {
634
+ result[e.split(":")[0].replace(/\s+/g, "")] = e.split(":")[1].trim();
635
  });
636
  this.result = result;
637