@numio/bigmath 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
    
        package/README.md
    CHANGED
    
    | @@ -226,7 +226,7 @@ sort(["1", "10", "11", "101", "11", "10", "1"]) // ["1", "1", "10", "10", "11", | |
| 226 226 | 
             
            sort(["-0.1", "0.1", "-1"], "asc") // ["-1", "-0.1", "0.1"]
         | 
| 227 227 |  | 
| 228 228 | 
             
            // DESC sorting
         | 
| 229 | 
            -
            sort(["-0.1", "0.1", "-1"], "desc") // ["0.1", "-0.1", "1"]
         | 
| 229 | 
            +
            sort(["-0.1", "0.1", "-1"], "desc") // ["0.1", "-0.1", "-1"]
         | 
| 230 230 |  | 
| 231 231 | 
             
            ```
         | 
| 232 232 |  | 
    
        package/package.json
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            {
         | 
| 2 2 | 
             
              "name": "@numio/bigmath",
         | 
| 3 3 | 
             
              "description": "@numio/bigmath is an arbitrary-precision arithmetic library. It can be used for basic operations with decimal numbers (integers and float)",
         | 
| 4 | 
            -
              "version": "1.0. | 
| 4 | 
            +
              "version": "1.0.9",
         | 
| 5 5 | 
             
              "keywords": [
         | 
| 6 6 | 
             
                "precision",
         | 
| 7 7 | 
             
                "arithmetic",
         |