(a, b)
| 1217 | |
| 1218 | //assumes a and b are equal length |
| 1219 | function arraysEqual (a, b) { |
| 1220 | for (var i = 0; i < a.length; ++i) { |
| 1221 | if (a[i] !== b[i]) return false; |
| 1222 | } |
| 1223 | return true; |
| 1224 | }; |
| 1225 | |
| 1226 | |
| 1227 | State.prototype.setParameter = function (parameterName, values) { |
no outgoing calls
no test coverage detected
searching dependent graphs…