MCPcopy
hub / github.com/streetwriters/notesnook / all

Method all

apps/mobile/worker.js:13392–13404  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

13390 }
13391
13392 get all() {
13393 const nodeList = new NodeList();
13394 let { [NEXT]: next, [END]: end } = this;
13395 while (next !== end) {
13396 switch (next.nodeType) {
13397 case ELEMENT_NODE:
13398 nodeList.push(next);
13399 break;
13400 }
13401 next = next[NEXT];
13402 }
13403 return nodeList;
13404 }
13405
13406 /**
13407 * @type HTMLHeadElement

Callers 15

execMethod · 0.45
removeFoldersFunction · 0.45
common-fixtures.tsFile · 0.45
loadDocumentMethod · 0.45
createDocumentHandlerMethod · 0.45
saveMethod · 0.45
getOperatorListMethod · 0.45
extractTextContentMethod · 0.45
getAnnotationsDataMethod · 0.45
_parsedAnnotationsMethod · 0.45
loadXfaFontsMethod · 0.45
checkLastPageMethod · 0.45

Calls 1

pushMethod · 0.45

Tested by 1

removeFoldersFunction · 0.36