防止 sweet.js 将数字添加到变量

Prevent sweet.js from adding numbers to variables

Sweet.js 总是在输出的末尾添加数字。在我生成的大多数 javascript 中,这不是必需的。有没有办法配置sweet.js不在参数末尾加数字?

    // Example Output
    module.exports = multiply;
    function multiply(a_31, b_32, c_33) {
        console.log('hey')
        if (Object.prototype.toString.call(a_31) !== "[object Array]") throw new Error("Must be array:" + a_31);
        if (Object.prototype.toString.call(c_33) !== "[object Array]") throw new Error("Must be array:" + c_33);
        return a_31 * c_33;
    }

Sweet.js 目前 非常 激进的变量重命名。有一个 issue 将重命名限制为仅存在多个同名绑定的情况。