This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WAXP = (function(){ | |
| MutationObserver = window.MutationObserver || window.WebKitMutationObserver; | |
| var SCROLL_INTERVAL = 600, | |
| SCROLL_INCREMENT = 450, | |
| AUTO_SCROLL = true, | |
| NAME_PREFIX = '', | |
| UNKNOWN_CONTACTS_ONLY = false, | |
| MEMBERS_QUEUE = {}, |
Updated 2025-05-31
| [gomock][1] | [testify][2] + [mockery][3] | [mockio][4] | [minimock][5] | [moq][6] | |
|---|---|---|---|---|---|
| GitHub stars | [![s1]][1] | [![s2]][2] + [![s3]][3] | [![s4]][4] | [![s5]][5] | [![s6]][6] |
| Latest release date | [![d1]][r1] | [![d2]][r2] + [![d3]][r3] | [![d4]][r4] | [![d5]][r5] | [![d6]][r6] |
| Maintained | ✅ | ✅ | ✅ | ✅ | ✅ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ContactFinder { | |
| #db; | |
| #chatToFind; | |
| #dbName = "model-storage"; | |
| #chatsCol = "chat"; | |
| #contactCol = "contact"; | |
| #groupCol = "participant"; | |
| constructor(chatGroupName) { | |
| this.#chatToFind = chatGroupName; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import asyncio | |
| from contextlib import asynccontextmanager | |
| import typing | |
| import asyncio | |
| from httpx._models import Request, Response | |
| from httpx._transports.asgi import ASGITransport | |
| from httpx._types import AsyncByteStream | |
| class ASGIResponseByteStream(AsyncByteStream): |