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

toprecision

v1.4.1

Published

[toPrecision](https://www.npmjs.com/package/toprecision) is a npm module similar to built-in [.toPrecision()](https://www.w3schools.com/jsref/jsref_toprecision.asp), but without exponential notation.

Downloads

47

Readme

About

toPrecision is a npm module similar to built-in .toPrecision(), but without exponential notation.

toPrecision() VS default .toPrecision():

  • without exponential notation (eg 1.23e4)
  • Both numbers in string ('123') and numbers (123) are supported.
  • optional thousand separator (1,200)
  • optional currency symbol ($200)

eg

const pc = require('toprecision')
let v = 12345.678
t = pc(v, 4) // t:12350
t = pc(v, 4, {comma:1})  t:'12,350'
t = pc(v, 4, {k:1})  t:'12.35k'
t = pc(v, 4, {dollar:1})  t:'$12350'
t = pc(v, 4, {prefix:'USD'})  t:'USD12350'

eg2 (ceil, floor, round)

let v = 12345.678
t = pc(v, 4) // t: 12350 // default round
t = pc(v, 4, {type:'ceil'}) // t: 12350
t = pc(v, 4, {ceil:1}) // t: 12350
t = pc(v, 4, {type:'floor'}) // t: 12340
t = pc(v, 4, {floor:1}) // t: 12340

Installation

In terminal (navigate to your project folder first):

npm i toprecision

then in your .js file, include this code to start using:

import toPrecision from "toprecision"

console.log(toPrecision(0.01234, 3)) // output: 0.0123

Parameters

function toPrecision(val, prec, { comma, dollar, prefix })
  • value = any number
  • precision = integer (1-100)
    • if omitted, toPrecision will return back the value
    • if value is outisde 1-100, error will be emitted
  • optional
    • comma/c = bool (true, 1 / false, 0)
      • true / 1: will return string: 1,200
      • false / 0: default value, will return number without separator
    • dollar/d = bool (true, 1 / false, 0)
      • true / 1: return dollar sign ($200)
      • false / 0: default value without dollar sign (200)
    • prefix/pre/p = string
      • eg: € => €200, $ => $200, USD => USD200
      • default value: '' (empty_string)
    • k = bool (true, 1 / false, 0)
      • true / 1: return with k behind if value >= 1000 (1.2k)
        • value >= 1,000,000 (1.2M); value >= 1,000,000,000 (1.2B)
      • false / 0: default value without k (1200)
    • type = 'ceil|floor' // default undefined
    • ceil = 0|1 // default 0; shorthand for type='ceil'
    • floor = 0|1 // default 0; shorthand for type='floor'

return

default return value is string