Explorar el Código

rename is_close_enough to is_within_pct

master
Jonathan Cobb hace 3 años
padre
commit
f87d3b74f4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 Ver fichero

@@ -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);
}



Cargando…
Cancelar
Guardar