min

種類メソッド
書式 Math.min(値1,値2)
解説
2つの値を比較し小さい値を返します。
サンプルコード
n = inputs[0];
outputs[0] = Math.min(n,0.5);
実際のスクリプトをダウンロード