ソースを参照

rename is_close_enough to is_within_pct

master
Jonathan Cobb 3年前
コミット
f87d3b74f4
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/main/resources/org/cobbzilla/util/javascript/standard_js_lib.js

+ 1
- 1
src/main/resources/org/cobbzilla/util/javascript/standard_js_lib.js ファイルの表示

@@ -171,7 +171,7 @@ function pct_diff (x, y) {
}

// return true if x is "close enough" to y, in terms of max_pct (default is 1%)
function is_close_enough (x, y, max_pct) {
function is_within_pct (x, y, max_pct) {
return 100 - pct_diff(x, y) <= ((typeof max_pct == "undefined") ? 1.0 : max_pct);
}



読み込み中…
キャンセル
保存