ag-psd 28.2.1 → 28.2.2

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": "ag-psd",
3
- "version": "28.2.1",
3
+ "version": "28.2.2",
4
4
  "description": "Library for reading and writing PSD files",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist-es/index.js",
@@ -2600,7 +2600,7 @@ function parseFilterFXItem(f: SoLdDescriptorFilterItem, options: ReadOptions): F
2600
2600
  };
2601
2601
  default:
2602
2602
  if (options.throwForMissingFeatures) {
2603
- console.log('FILTER', require('util').inspect(f, false, 99, true));
2603
+ // console.log('FILTER', require('util').inspect(f, false, 99, true));
2604
2604
  throw new Error(`Unknown filter classId: ${(f as any).Fltr._classID}`);
2605
2605
  }
2606
2606
  return undefined;
@@ -2622,7 +2622,7 @@ function parseFilterFXItem(f: SoLdDescriptorFilterItem, options: ReadOptions): F
2622
2622
  case 1231976050: return { ...base, type: 'invert' }
2623
2623
  default:
2624
2624
  if (options.throwForMissingFeatures) {
2625
- console.log('FILTER', require('util').inspect(f, false, 99, true));
2625
+ // console.log('FILTER', require('util').inspect(f, false, 99, true));
2626
2626
  throw new Error(`Unknown filterID: ${(f as any).filterID}`);
2627
2627
  }
2628
2628
  }