MCPcopy Create free account
hub / github.com/apache/pouchdb / mapToKeysArray

Function mapToKeysArray

lib/index-browser.js:7908–7915  ·  view source on GitHub ↗
(map)

Source from the content-addressed store, hash-verified

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