MCPcopy
hub / github.com/dli/paint / arraysEqual

Function arraysEqual

wrappedgl.js:1219–1224  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

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) {

Callers 1

wrappedgl.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…