Code Monkey home page Code Monkey logo

Comments (6)

ai avatar ai commented on August 11, 2024

I can add a check and raise the error on 0, but it will create a problem:

  1. If I will put the check in index.js and index.browser.js it will increase the size of the library. It is a too big cost for the rare case.
  2. If I will add check only to index.js it will make node/browser versions inconsistency.

What is your use case?

from nanoid.

DeLaGuardo avatar DeLaGuardo commented on August 11, 2024

I don't have a use case, that's why I'm not sure is this a problem). I came here cause I found the same problem in nanoid implementation for Clojure(Script) when I tried to create a generative test for it. For given 0 exception is thrown in clojure but not in nodejs. And now I'm curious which implementation is more accurate and how it should be implemented for another languages.

from nanoid.

ai avatar ai commented on August 11, 2024

I think we can close this issue, since it is a extremely rare case, which fix will cost us more then benefits

from nanoid.

DeLaGuardo avatar DeLaGuardo commented on August 11, 2024

But what you think about result of nanoid(0)? Should it be the same as without argument, exception or empty string?

from nanoid.

ai avatar ai commented on August 11, 2024

But what you think about result of nanoid(0)

The result is non-expected. It should be an empty string.

We can fix it by replace size = size || 21 to if (typeof size === "undefined") size = 21, but it will increase library size.

from nanoid.

DeLaGuardo avatar DeLaGuardo commented on August 11, 2024

Your answer is enough for me, thanks! And I'm not forcing you to change the library )

from nanoid.

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.