MCPcopy Index your code
hub / github.com/apache/pouchdb / mapToKeysArray

Function mapToKeysArray

lib/index.es.js:7893–7900  ·  view source on GitHub ↗
(map)

Source from the content-addressed store, hash-verified

7891}
7892
7893function mapToKeysArray(map) {
7894 var result = new Array(map.size);
7895 var index = -1;
7896 map.forEach(function (value, key) {
7897 result[++index] = key;
7898 });
7899 return result;
7900}
7901
7902function createBuiltInError(name) {
7903 var message = 'builtin ' + name +

Callers 3

processKeyValueDocsFunction · 0.70
saveKeyValuesFunction · 0.70
localViewCleanupFunction · 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…