Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mindee

Package Overview
Dependencies
Maintainers
7
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mindee - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

5

CHANGELOG.md
# CHANGELOG
## v1.3.2
### Fixes
* 🐛 use PDF length instead of cut PDF size limit
## v1.3.1

@@ -4,0 +9,0 @@

5

mindee/inputs.js

@@ -146,6 +146,3 @@ const fs = require("fs").promises;

if (pdfLength <= this.CUT_PDF_SIZE) return;
const pagesNumbers = [
...Array(this.CUT_PDF_SIZE - 1).keys(),
pdfLength - 1,
];
const pagesNumbers = [...Array(pdfLength - 1).keys(), pdfLength - 1];
const pages = await splitedPdfDocument.copyPages(pdfDocument, pagesNumbers);

@@ -152,0 +149,0 @@ pages.forEach((page) => splitedPdfDocument.addPage(page));

2

package.json
{
"name": "mindee",
"version": "1.3.1",
"version": "1.3.2",
"description": "Mindee Client Library for Node.js",

@@ -5,0 +5,0 @@ "main": "mindee/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc