npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

math-all

v1.1.1

Published

Versatile JavaScript library for precise rounding of decimal places and significant digits.

Downloads

36

Readme

Math-All

Examples

Here are some examples of using the MathAll.round function:

// Rounding to the nearest integer
const result1 = MathAll.round(14321.12345, 0); // Output: 14321

// Rounding to the nearest ten
const result2 = MathAll.round(14321.12345, 1); // Output: 14320

// Rounding to the second decimal place
const result3 = MathAll.round(14321.12344, -2); // Output: 14321.12

Overview

The math-all library provides an extended rounding solution in JavaScript, inspired by the familiar Math.round function. The library allows for precise rounding not only of decimal places but also for various significant digits, enhancing the flexibility of numeric rounding operations.

Installation

To install the math-all library, you can use the following npm command:

npm install math-all

Usage

Here is a basic example of using the MathAll.round function:

import { MathAll } from "math-all";

or

const { MathAll } = require("math-all");
// Example usage
const roundedValue = MathAll.round(14321.12345, -5);
console.log(roundedValue); // Output: 14321.12345

Features

1. Multi-Precision Rounding

The math-all library allows rounding not only for decimal places but also for various significant digits, providing a versatile solution for precise numeric rounding.

2. Familiar Interface

Designed with a similar interface to the built-in Math.round function, users can seamlessly integrate the MathAll.round function into their JavaScript applications.

3. Enhanced Precision Handling

The library includes enhanced precision handling to address potential issues associated with precision when using standard rounding formulas.

How It Works

The core rounding formula used by the math-all library is:

Math.round(copiedTarget / 10 ** digit) * 10 ** digit;

This formula ensures accurate rounding based on the specified digit.