UNPKG
fpdf2pic
Version:
latest (0.5.8)
0.5.8
0.5.7
0.5.6
0.5.5
0.4.0
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.3
0.1.2
0.1.1
A command line tool for converting PDF to images.
github.com/funnyzak/fpdf2pic
funnyzak/fpdf2pic
fpdf2pic
/
dist
/
src
/
utils
/
index.js
7 lines
•
272 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
CmdExists
from
'command-exists'
;
import
{ resolve }
from
'./promise'
;
export
async
function
commandExists
(
commandString
) {
const
[commandError] =
await
resolve
(
CmdExists
(commandString));
return
commandError ===
undefined
; }
//# sourceMappingURL=index.js.map