function setToggleOption()

in lib/build.js [67:73]


function setToggleOption(inputOption, command) {
    var opt = "";
    if (inputOption && inputOption === "true") {
        opt = ` --${command}`;
    }
    return opt;
}