MCPcopy Create free account
hub / github.com/DanWahlin/CustomerManagerStandard / __arrayZip

Function __arrayZip

CustomerManager/Scripts/breeze.debug.js:335–342  ·  view source on GitHub ↗
(a1, a2, callback)

Source from the content-addressed store, hash-verified

333 }
334
335 function __arrayZip(a1, a2, callback) {
336 var result = [];
337 var n = Math.min(a1.length, a2.length);
338 for (var i = 0; i < n; ++i) {
339 result.push(callback(a1[i], a2[i]));
340 }
341 return result;
342 }
343
344 //function __arrayDistinct(array) {
345 // array = array || [];

Callers 3

buildKeyPredicateFunction · 0.85
buildNavigationPredicateFunction · 0.85
checkEntityKeyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected