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

Function arrayIsEmpty

docs/pseudo.esm.sh/tinybase@9.0.0/ui-react/index.js:63–63  ·  view source on GitHub ↗
(array)

Source from the content-addressed store, hash-verified

61var arrayOrValueEqual = (value1, value2) => isArray(value1) && isArray(value2) ? arrayIsEqual(value1, value2) : value1 === value2;
62var arrayMap = (array, cb) => array.map(cb);
63var arrayIsEmpty = (array) => size(array) == 0;
64var arrayFilter = (array, cb) => array.filter(cb);
65var arrayWith = (array, index, value) => array.with(index, value);
66var object = Object;

Callers 1

useUndoInformationFunction · 0.70

Calls 1

sizeFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…