New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

percent-round

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

percent-round

Calculate percentages from a list of values.

latest
Source
npmnpm
Version
2.3.1
Version published
Maintainers
1
Created
Source

npm version downloads license open issues Build Status

💯 Percent round

Take an array of numeric values and returns an array with corresponding rounded percentages. The total of the returned values will always be 100.

Works in browsers and nodeJS. Also, available as an ES module.

Zero Dependency

Description

percentRound(percents, precision = 0)

  • input - Number[]

    An array of numbers that will be turned to percents.

  • precision - Number (default = 0)

    The number of digits to appear after the decimal point.

Usage

import percentRound from "percent-round";

percentRound([10.34, 20.043, 30.04, 39.567]);     // [10,    20,    30,    40]
percentRound([10.34, 20.043, 30.04, 39.567], 1);  // [10.3,  20.1,  30,    39.6]
percentRound([10.34, 20.043, 30.04, 39.567], 2);  // [10.34, 20.05, 30.04, 39.57]
percentRound([1, 2, 3, 4]);  // [10, 20, 30, 40]
percentRound([60, 60]);  // [50, 50]

Changelogs

  • 2.3.0
  • 2.2.1
    • Fix IE not supporting default arguments #6
  • 2.2.0
    • Input numbers are automatically turned to percents
  • 2.1.1
    • fix wrong file version headers when publishing
  • 2.1.0
    • add typescript declaration
    • add ES6 module support
    • add minified library distribution file
    • add MIT Licensing
    • add changelog
    • add Travis CI
  • 2.0.0
    • add float precision argument feature
    • performance improve
    • new rounding algorithm = better performance and accuracy
    • add test suite
    • fix wrong global UMD module naming #2
    • fix error when input percents are strings #1

License

MIT. See LICENSE file for details.

Keywords

percent

FAQs

Package last updated on 19 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts