MCPcopy Index your code
hub / github.com/tinyplex/tinybase / arrayEvery

Function arrayEvery

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

Source from the content-addressed store, hash-verified

81};
82var arrayHas = (array, value) => array.includes(value);
83var arrayEvery = (array, cb) => array.every(cb);
84var arrayIsEqual = (array1, array2) => size(array1) === size(array2) && arrayEvery(array1, (value1, index) => array2[index] === value1);
85var arrayIsSorted = (array, sorter) => arrayEvery(
86 array,

Callers 6

arrayIsEqualFunction · 0.70
arrayIsSortedFunction · 0.70
objIsEqualFunction · 0.70
everyCallbackFunction · 0.70
writeGroupRowFunction · 0.70
writeSelectRowFunction · 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…