Giter Site home page Giter Site logo

Comments (9)

mdekstrand avatar mdekstrand commented on June 12, 2024 1

I have confirmed that denoland/deno#22030 fixes this on the Deno side, so the next Deno release (due tomorrow) should work.

from isomorphic-git.

jcubic avatar jcubic commented on June 12, 2024

Do you want to contribute and create a fix?

As for the catch in Deno, maybe this should reported as a bug for Deno. Errors should not escape catch unless the error is retrown.

from isomorphic-git.

mdekstrand avatar mdekstrand commented on June 12, 2024

I would definitely be open to contributing a fix. I've also reported a bug against Deno (denoland/deno#21795), and will see what they say there first. It definitely seems like a bug, even if it's really weird to call readFile() without an argument.

from isomorphic-git.

mdekstrand avatar mdekstrand commented on June 12, 2024

@jcubic Thinking about this, is there a reason it needs to check that fs.promises is actually promise-like? I see why it needs to check if you just pass fs, but could that check be dropped without causing other problems?

Alternatively, would it work to provide a way to say “this one is really a promise-based api, trust me”?

from isomorphic-git.

jcubic avatar jcubic commented on June 12, 2024

The problem is that the library expects to detect if it's normal FS or promisified FS. If it's normal FS it promisify all the functions from FS. So yes it needs to check if the result is fs.promise or not. But maybe it can check different method that don't throw an error.

I'm wondering if fs.stats will work on a root directory. It needs to work for both browser and Node (and in your case Deno). It needs to be a method that is included in lightningFS.

from isomorphic-git.

jcubic avatar jcubic commented on June 12, 2024

You can also report this bug to Deno. Exceptions should not bypass try..catch.

from isomorphic-git.

mdekstrand avatar mdekstrand commented on June 12, 2024

It's being discussed over at Deno, and this comment gets to what's happening here: denoland/deno#21795 (comment).

I think there's a decent case to be made either way — it looks like an emergent property of JavaScript's defaulting behavior, the fact that promisify is not aware of method signatures, and calling the readFile out-of-spec. It looks like explicitly passing undefined to readFile in isPromiseLike would fix or work around it from the isomorphic-git side.

from isomorphic-git.

mdekstrand avatar mdekstrand commented on June 12, 2024

Deno folks are also working on a patch: denoland/deno#22030

from isomorphic-git.

jcubic avatar jcubic commented on June 12, 2024

You can contribute with a fix. Maybe using an empty string will look better than passing undefined. I'm not sure how Deno will work for that case.

from isomorphic-git.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.