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

Function mapToKeysArray

lib/index-browser.es.js:7904–7911  ·  view source on GitHub ↗
(map)

Source from the content-addressed store, hash-verified

7902}
7903
7904function mapToKeysArray(map) {
7905 var result = new Array(map.size);
7906 var index = -1;
7907 map.forEach(function (value, key) {
7908 result[++index] = key;
7909 });
7910 return result;
7911}
7912
7913function createBuiltInError(name) {
7914 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…