Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 508 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 508 Bytes

prefix-si

SI, IEC, BS1852 compatible number formatter

Travis Status

Install

$ npm install prefix-si

Usage

prefix = require("prefix-si").prefix
// import { prefix } from "prefix-si"


prefix(1024*1024, "B", {binary: true})
// => "1MiB"

prefix(1200, "g")
// => "1.2kg"

prefix(4700, "R", {bs1852: true})
// => "4K7"