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

@haqq/format-number-with-subscript-zeros

v1.0.1

Published

A library to format numbers using scientific notation with subscript zeros. This method is particularly useful for representing very small numbers in a compact and readable format.

Downloads

166

Readme

Format Number with Subscript Zeros

A library to format numbers by hiding leading zeros using subscript digits. This method is particularly useful for representing very small numbers in a compact and readable format. The subscript digits indicate the number of hidden zeros.

Documentation

Installation

yarn add @haqq/format-number-with-subscript-zeros

Usage

import { formatNumberWithSubscriptZeros } from '@haqq/format-number-with-subscript-zeros';

console.log(formatNumberWithSubscriptZeros("0.42"));               // "0.42"
console.log(formatNumberWithSubscriptZeros("0.042"));              // "0.042"
console.log(formatNumberWithSubscriptZeros("0.0042"));             // "0.0042"
console.log(formatNumberWithSubscriptZeros("0.00042"));            // "0.00042"
console.log(formatNumberWithSubscriptZeros("0.000042"));           // "0.000042"
console.log(formatNumberWithSubscriptZeros("0.0000042"));          // "0.0₅42"
console.log(formatNumberWithSubscriptZeros("0.00000042"));         // "0.0₆42"
console.log(formatNumberWithSubscriptZeros("0.000000042"));        // "0.0₇42"
console.log(formatNumberWithSubscriptZeros("0.0000000042"));       // "0.0₈42"
console.log(formatNumberWithSubscriptZeros("0.00000000042"));      // "0.0₉42"
console.log(formatNumberWithSubscriptZeros("0.000000000042"));     // "0.0₁₀42"
console.log(formatNumberWithSubscriptZeros("0.0000000000042"));    // "0.0₁₁42"
console.log(formatNumberWithSubscriptZeros("0.00000000000042"));   // "0.0₁₂42"

Additional Parameters

The formatNumberWithSubscriptZeros function accepts the following parameters:

  • numberStr (string): The number string to format.
  • presiction (number, optional): The number of decimal places to include in the formatted string. Default is 3.
  • min (number, optional): The minimum value for which the formatting should be applied. Default is 0.00001.

Running Tests

yarn test

Building the Project

yarn build

Linting the Code

yarn lint

Benefits and Convenience

This method of formatting numbers is particularly useful for:

• Readability: It makes very small numbers easier to read and understand by representing leading zeros as subscript digits.
• Compact Representation: It reduces the length of the number string by using subscript digits for leading zeros.
• Scientific Applications: It is useful in scientific and engineering contexts where numbers can be extremely small and a clear representation is needed.

How It Works

The function converts the number string to a floating-point number and checks if it is less than 0.01. If the number is larger, it returns the original string. For smaller numbers, it calculates the number of leading zeros and formats them as subscript digits.

License

MIT