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

Function __getArray

CustomerManager/Scripts/breeze.debug.js:394–401  ·  view source on GitHub ↗
(source, propName)

Source from the content-addressed store, hash-verified

392
393 // returns and array for a source and a prop, and creates the prop if needed.
394 function __getArray(source, propName) {
395 var arr = source[propName];
396 if (!arr) {
397 arr = [];
398 source[propName] = arr;
399 }
400 return arr;
401 }
402
403 function __requireLib(libNames, errMessage) {
404 var arrNames = libNames.split(";");

Callers 3

structuralTypeFromJsonFunction · 0.85
breeze.debug.jsFile · 0.85
tryResolveNpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected