Jakub T. Jankiewicz

Results 1220 comments of Jakub T. Jankiewicz

I still don't understand how, by adding one branch that is covered by test, I have +3 missed and +4 branch missed. https://github.com/LIPS-scheme/lips/commit/28a58e6e1f95f6a18307d96007157413a9af791c ![Przechwycenie obrazu ekranu_2024-08-29_16-53-27](https://github.com/user-attachments/assets/84e7e380-a3cf-4b4c-9ffa-2be00efc445d) I understand the calculation...

Look at the signature of completion: ``` completion {list: string[] | function(): Promise(string[])|string[], delay: miliseconds, min_length: number} ``` This is pseudo TypeScript. You can use: ```javascript var tags = tagger(input,...

I've added some documentation to the demo. There is also a need to add some docs to README.

You can propose something. I would like to have: * Welcome page with explanation of what Wayne is with a logo and maybe a genesis of the name (you can...

`fs.exists` is deprecated in Node.js, so I don't see a reason for adding this.

You can create this function very easy if you need it: ```javascript async function exists(path) { try { await fs.stat(path); return true; } catch(e) { return false; } } ```...

I don't think that you can implement `existsSync` with lightingFS that use promise based API. But if you want to contribute and implement it (even that I think it's not...

I have no idea what is happening with GitLab, I was hoping that someone will check this out. We had one person that was looking at CI/CD, but so far...

I don't think it's a good idea. I will contact original author to get access to: https://gitlab.com/isomorphic-git/test.empty.git What exactly is needed?