import memoizee from"memoizee"import which from"which"asyncfunctionhasApk_() {
try {
awaitwhich("apk")
returntrue
} catch (error) {
returnfalse
}
}
/**
* Check if apk is available on the system
*/exportconst hasApk = memoizee(hasApk_, { promise: true })