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

libreoffice-convert

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libreoffice-convert - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

6

index.js

@@ -7,3 +7,3 @@ 'use strict';

const tmp = require('tmp');
const { exec } = require('child_process');
const { execFile } = require('child_process');

@@ -50,4 +50,4 @@ exports.convert = (document, format, filter, callback) => {

command += ` --outdir ${tempDir.name} ${path.join(tempDir.name, 'source')}`;
return exec(command, callback);
command = command.split(' ');
return execFile(command[0], command.slice(1), callback);
}],

@@ -54,0 +54,0 @@ loadDestination: ['convert', (results, callback) =>

{
"name": "libreoffice-convert",
"version": "1.1.1",
"version": "1.1.2",
"description": "A simple and fast node.js module for converting office documents to different formats",

@@ -5,0 +5,0 @@ "main": "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