Git Product home page Git Product logo

purescript-number-format's People

Contributors

javran avatar jonplussed avatar

Watchers

 avatar  avatar  avatar

Forkers

javran

purescript-number-format's Issues

Safe versions

Re #1
What are your thoughts for providing some safe versions that aren't wrapped in a Maybe or in an Eff? Only for the more common choices. Stuff like toBinString :: Number -> String or toHexString :: Number -> String would be pretty nice to have.

Pretty easy to implement as well:

toBinString :: Number -> String
toBinString = fromJust <<< toString "2"

toHexString :: Number -> String
toHexString = fromJust <<< toString "16"

Safety

Not to rain on your parade, but the reason these don't exist in the core libraries is they're actually a bit tricky to get right. ;)

We did have them at one point, and then later removed them because they only work with certain arguments, and we didn't want to wrap them in an Eff with an exception or something.

The rules according to MDN:

  • toExponential and toFixed throw a RangeError if the digits provided is not between 0 and 20
  • toPrecision throws a RangeError if the precision provided is not between 0 and 100
  • toString throws a RangeError if the radix provided is not between 2 and 36

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.