crypto-style
v1.0.0
Published
Easy way to display amounts in crytpo currency format.
Maintainers
Readme
Easy way to display amounts in crytpo currency format
Installation
$ npm i crypto-styleUsage
const cs = require('crypto-style');or in ES6:
import cs from 'crypto-style';Examples
cs(0.100); // 0.10000000
cs(200.2, 5); // 200.20000
cs(0.500, 10); // 0.5000000000
