(argumentForCoercion)
| 14970 | } |
| 14971 | |
| 14972 | function toInt(argumentForCoercion) { |
| 14973 | var coercedNumber = +argumentForCoercion, |
| 14974 | value = 0; |
| 14975 | |
| 14976 | if (coercedNumber !== 0 && isFinite(coercedNumber)) { |
| 14977 | value = absFloor(coercedNumber); |
| 14978 | } |
| 14979 | |
| 14980 | return value; |
| 14981 | } |
| 14982 | |
| 14983 | // compare two arrays, return the number of differences |
| 14984 | function compareArrays(array1, array2, dontConvert) { |
no test coverage detected