UNPKG

pdf-toolz

Version:
10 lines (8 loc) 311 B
const shell = require('shelljs'); module.exports = { requireExecutable: function (exeName) { if (!shell.which(exeName)) { throw new Error(`[pdf-toolz] Error: The native executable '${exeName}' was not found on your system but is required to load this application.`); } } };