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
| 0: 8d 8d 54 ff ff ff lea ecx,[ebp-0xac] | |
| 6: f3 0f 11 01 movss DWORD PTR [ecx],xmm0 | |
| a: 8b 55 20 mov edx,DWORD PTR [ebp+0x20] | |
| d: 8b c4 mov eax,esp | |
| f: 83 fa 04 cmp edx,0x4 ; "Bullet offset 0" | |
| 12: 7f 02 jg 0x16 | |
| 14: eb 16 jmp 0x2c | |
| 16: 89 10 mov DWORD PTR [eax],edx | |
| 18: 01 38 add DWORD PTR [eax],edi |
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
| diff --git a/module-type-overrides/enquirer.d.ts b/module-type-overrides/enquirer.d.ts | |
| index 27dee4e90..5172f0c5c 100644 | |
| --- a/module-type-overrides/enquirer.d.ts | |
| +++ b/module-type-overrides/enquirer.d.ts | |
| @@ -67,6 +67,21 @@ declare namespace Enquirer { | |
| ...args: ConstructorParameters<new (...args: any) => T> | |
| ) => T; | |
| + export function prompt<Name extends string, Q extends prompt.Question>( | |
| + question: Q & { name: Name } |
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
| Array.from(document.querySelectorAll(".card-grid-header-content")) | |
| .map((h, idx) => { | |
| const title = Array.from(h.childNodes) | |
| .find(n => n.nodeType === Node.TEXT_NODE) | |
| ?.textContent.trim(); | |
| const searchLink = h.querySelector('a')?.getAttribute("href"); | |
| const query = new URLSearchParams(searchLink?.split('?')[1]).get('q'); | |
| return {title, query} | |
| }); |
OlderNewer