UNPKG

chdman

Version:

💿 chdman binaries and wrapper for Node.js.

17 lines • 475 B
import ChdmanBin from './chdmanBin.js'; export default { async verify(options) { try { await ChdmanBin.run([ 'verify', '--input', options.inputFilename, ...(options.inputParentFilename ? ['--inputparent', options.inputParentFilename] : []), ], options); return true; } catch { return false; } }, }; //# sourceMappingURL=chdmanVerify.js.map