MCPcopy Create free account
hub / github.com/tinyplex/tinybase / arrayMap

Function arrayMap

docs/pseudo.esm.sh/tinybase@9.0.0/ui-solid-inspector/index.js:89–89  ·  view source on GitHub ↗
(array, cb)

Source from the content-addressed store, hash-verified

87var arrayIsEqual = (array1, array2) => size(array1) === size(array2) && arrayEvery(array1, (value1, index) => array2[index] === value1);
88var arrayOrValueEqual = (value1, value2) => isArray(value1) && isArray(value2) ? arrayIsEqual(value1, value2) : value1 === value2;
89var arrayMap = (array, cb) => array.map(cb);
90var object = Object;
91var getPrototypeOf = (obj) => object.getPrototypeOf(obj);
92var objEntries = object.entries;

Callers 4

getListenerArgumentsFunction · 0.70
argsOrGetArgsFunction · 0.70
wrapFunction · 0.70
contentFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…