UNPKG

ipfs-api

Version:

A client library for the IPFS HTTP API

13 lines (10 loc) 239 B
'use strict' const Big = require('big.js') module.exports = (chunk) => { return { totalIn: new Big(chunk.TotalIn), totalOut: new Big(chunk.TotalOut), rateIn: new Big(chunk.RateIn), rateOut: new Big(chunk.RateOut) } }