dpzvc-ui 1.2.4 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dpzvc-ui",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "Vue组件库",
5
5
  "main": "dist/dpzvc.js",
6
6
  "module": "dist/dpzvc.esm.js",
package/src/lib/exif.js CHANGED
@@ -645,7 +645,7 @@
645
645
 
646
646
  function getStringFromDB(buffer, start, length) {
647
647
  var outstr = "";
648
- for (n = start; n < start+length; n++) {
648
+ for (var n = start; n < start+length; n++) {
649
649
  outstr += String.fromCharCode(buffer.getUint8(n));
650
650
  }
651
651
  return outstr;