2.0.1 • Published 7 years ago

technically v2.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

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.

npm.io

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'