prefix-si
SI, IEC, BS1852 compatible number formatter

Install
``bash
$ npm install prefix-si
`
Usage
`js
prefix = require('prefix-si')
prefix(1024*1024, "B", {binary: true})
// => "1MiB"
prefix(1200, "g")
// => "1.2kg"
prefix(4700, "R", {bs1852: true})
// => "4K7"
``