/irodger.github.io

Demo site about irodger's tools

Primary LanguageHTML

irodger.github.io

XLSX-JSON parser

Simple xlsx to json parser. Also support i18next format. Relies on node-xlsx.

{
  "lang": {
    "translations": {
      "key": "value",
      "another_key": "another value"
    }
  }
}

Price Like Human's

JavaScript Kit for formatting price or numbers to human likes format. Actually for cryptocurrency with 7+ numbers after delimiter

Example

priceLikeHumans.formattedPrice(12345.6789) 
//> EU Locale "12,345.678,9"
//> RU Locale "12 345.678 9"
priceLikeHumans.exponentFormatter(1e-7) 
//> "0.0000001"
priceLikeHumans.excessZeroes(10e-8) 
//> 1e-7
priceLikeHumans.exponentFormatter( priceLikeHumans.excessZeroes(10e-8) )
//> "0.0000001"
priceLikeHumans.formattedPrice( 
  priceLikeHumans.exponentFormatter( 
    priceLikeHumans.excessZeroes(10e-8) 
  ) 
)
//> "0.000 000 1"