@nosferatu500/textract-lite
Advanced tools
Comparing version 7.0.11 to 7.0.12
@@ -26,6 +26,6 @@ import fs from "fs"; | ||
// discover available extractors | ||
const extractors = await Promise.all(fs.readdirSync(pathToFileURL(extractorPath)).map(async (item) => { | ||
const extractors = await Promise.all(fs.readdirSync(extractorPath).map(async (item) => { | ||
const fullExtractorPath = path.join(extractorPath, item); | ||
// get the extractor | ||
const { default: extractor } = await import(fullExtractorPath); | ||
const { default: extractor } = await import(pathToFileURL(extractorPath).toString()); | ||
return extractor; | ||
@@ -32,0 +32,0 @@ })); |
{ | ||
"name": "@nosferatu500/textract-lite", | ||
"version": "7.0.11", | ||
"version": "7.0.12", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/nosferatu500/textract-lite", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21627