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

Function mapToKeysArray

lib/index.js:7898–7905  ·  view source on GitHub ↗
(map)

Source from the content-addressed store, hash-verified

7896}
7897
7898function mapToKeysArray(map) {
7899 var result = new Array(map.size);
7900 var index = -1;
7901 map.forEach(function (value, key) {
7902 result[++index] = key;
7903 });
7904 return result;
7905}
7906
7907function createBuiltInError(name) {
7908 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…