technically

2.0.1 • Public • Published

technically

npm version Build Status Dependency Status devDependency Status Greenkeeper badge

Get the “exact value” of the number

This module works basically like Number.prototype.toString(), but more technically.

const technically = require('technically');
 
technically(100); //=> '100'
 
(1e24).toString(); //=> '1e+24'
technically(1e24); //=> '999999999999999983222784'
 
(0.1).toString(); //=> '0.1'
technically(0.1); //=> '0.1000000000000000055511151231257827021181583404541015625'
 
(-0).toString(); //=> '0'
technically(-0); //=> '-0'

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.1
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.0.1
    0
  • 2.0.0
    0
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i technically

Weekly Downloads

0

Version

2.0.1

License

MIT

Last publish

Collaborators

  • hakatashi