envful 1.0.7

A tool to verify the presence of environment variables before running a process
Documentation
1
2
3
4
5
6
7
8
9
10
11
function getBinary() {
  try {
    const getBinary = require("./getBinary");
    return getBinary();
  } catch (err) {}
}

const binary = getBinary();
if (binary) {
  binary.uninstall();
}