mol_dump_lib 0.0.150 → 0.0.152

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/web.js CHANGED
@@ -385,7 +385,6 @@ var $;
385
385
  $.$mol_dev_format_element = $mol_dev_format_element;
386
386
  function $mol_dev_format_span(style, ...content) {
387
387
  return $mol_dev_format_element('span', {
388
- 'vertical-align': '8%',
389
388
  ...style,
390
389
  }, ...content);
391
390
  }
@@ -994,6 +993,8 @@ var $;
994
993
  return true;
995
994
  }
996
995
  function compare_buffer(left, right) {
996
+ if (left instanceof DataView)
997
+ return compare_buffer(new Uint8Array(left.buffer, left.byteOffset, left.byteLength), new Uint8Array(right.buffer, left.byteOffset, left.byteLength));
997
998
  const len = left.byteLength;
998
999
  if (len !== right.byteLength)
999
1000
  return false;