technically

Get the “exact value” of the number


Keywords
number, toString, ieee754, IEEE 754, convert, floating point, javascript, joke, npm-module, numbers-to-text
License
MIT
Install
npm install technically@2.0.1

Documentation

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'