mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
7 lines
176 B
Python
7 lines
176 B
Python
from bauh.commons.system import run_cmd
|
|
|
|
|
|
def is_available() -> bool:
|
|
res = run_cmd('which npm', print_error=False)
|
|
return res and not res.strip().startswith('which ')
|