UNPKG

@porosys/ndtool

Version:

Netdata alert and automation tool

11 lines (10 loc) 204 B
import { execa } from 'execa'; export const isBinaryInstalled = async (binary) => { try { await execa('which', [binary]); return true; } catch { return false; } };