UNPKG

@porosys/ndtool

Version:

Netdata alert and automation tool

11 lines (9 loc) 209 B
import { execa } from 'execa'; export const isBinaryInstalled = async (binary: string): Promise<boolean> => { try { await execa('which', [binary]); return true; } catch { return false; } };