Giter Site home page Giter Site logo

Comments (4)

PikachuEXE avatar PikachuEXE commented on September 26, 2024

Would be great to be able to set a default
Then format() => result with that default format

from numeral-js.

cGuille avatar cGuille commented on September 26, 2024

Hello.

Considering the code, it looks like it has been planned:

        format : function (inputString) {
            return formatNumeral(this, inputString ? inputString : numeral.defaultFormat);
        },

        unformat : function (inputString) {
            return unformatNumeral(this, inputString ? inputString : numeral.defaultFormat);
        },

Anyway, numeral.defaultFormat does not seem to be initialized anywhere.
Setting its value does the trick (tested). But what the default value is supposed to be?

Maybe a better behavior would be to throw a proper error rather than an error about a call of indexOf on undefined…

I think the question is: in which case do you call format() without a proper format?

  • if it is because you made a programming mistake, you should get (a proper) error;
  • if it is because you can't choose a format yet (for example if the user has not given the information about which you can infer the format), it should use a default format… but which one?

I think the second case is already covered by the API: if you don't have enough information to choose a format, fallback your format variable to '' (or choose a default format at application level, using numeral.defaultFormat = 'YOUR FORMAT';) and it won't break the code.

So, IMO, it should throw an error, but a more descriptive one.

If somebody in the Numeral team would like to choose a way to solve this issue, I'd volunteer to make the fix if needed.

from numeral-js.

adamwdraper avatar adamwdraper commented on September 26, 2024

For now i made it function as the zeroFormat does. it is a function so you can set the default with numeral.defaultFormat('$0.00'). It defaults to '0,0' since this is the format i use most often, but if everyone feels we should use another i am open for suggestions.

from numeral-js.

PikachuEXE avatar PikachuEXE commented on September 26, 2024

As long as default can be changed
Then it's users' job to set it properly somewhere which is fine

from numeral-js.

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.