0
Sweet.jsは常に出力の最後に数字を追加します。私が生成しているjavascriptのほとんどでは、これは必要ではありません。パラメータの末尾に数字を追加しないようにsweet.jsを設定する方法はありますか?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;
}