@digipair/skill-pdf2pic 0.85.0 → 0.85.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/index.cjs.js +1 -4
- package/index.esm.js +1 -4
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -27678,10 +27678,7 @@ let PDFService = class PDFService {
|
|
|
27678
27678
|
})(page, {
|
|
27679
27679
|
responseType: 'base64'
|
|
27680
27680
|
});
|
|
27681
|
-
|
|
27682
|
-
`data:image/${format};base64,${result.base64}`
|
|
27683
|
-
];
|
|
27684
|
-
return formattedResult;
|
|
27681
|
+
return `data:image/${format};base64,${result.base64}`;
|
|
27685
27682
|
}
|
|
27686
27683
|
};
|
|
27687
27684
|
const convert = (params, pinsSettingsList, context)=>new PDFService().convert(params, pinsSettingsList, context);
|
package/index.esm.js
CHANGED
|
@@ -27673,10 +27673,7 @@ let PDFService = class PDFService {
|
|
|
27673
27673
|
})(page, {
|
|
27674
27674
|
responseType: 'base64'
|
|
27675
27675
|
});
|
|
27676
|
-
|
|
27677
|
-
`data:image/${format};base64,${result.base64}`
|
|
27678
|
-
];
|
|
27679
|
-
return formattedResult;
|
|
27676
|
+
return `data:image/${format};base64,${result.base64}`;
|
|
27680
27677
|
}
|
|
27681
27678
|
};
|
|
27682
27679
|
const convert = (params, pinsSettingsList, context)=>new PDFService().convert(params, pinsSettingsList, context);
|