Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 1a54ae5

Browse files
author
Alan Shaw
authored
refactor: switch to bignumber.js (#927)
BREAKING CHANGE: All API methods that returned [`big.js`](https://github.com/MikeMcl/big.js/) instances now return [`bignumber.js`](https://github.com/MikeMcl/bignumber.js/) instances. License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 39e4d7c commit 1a54ae5

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"dependencies": {
3030
"async": "^2.6.1",
31-
"big.js": "^5.2.2",
31+
"bignumber.js": "^8.0.2",
3232
"bl": "^2.1.2",
3333
"bs58": "^4.0.1",
3434
"cids": "~0.5.5",

src/bitswap/stat.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4-
const Big = require('big.js')
4+
const Big = require('bignumber.js')
55

66
const transform = function (res, callback) {
77
callback(null, {

src/repo/stat.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4-
const Big = require('big.js')
4+
const Big = require('bignumber.js')
55

66
const transform = function (res, callback) {
77
callback(null, {

src/stats/bitswap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4-
const Big = require('big.js')
4+
const Big = require('bignumber.js')
55

66
const transform = function (res, callback) {
77
callback(null, {

src/stats/bw-util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const Big = require('big.js')
3+
const Big = require('bignumber.js')
44

55
module.exports = (chunk) => {
66
return {

src/stats/repo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4-
const Big = require('big.js')
4+
const Big = require('bignumber.js')
55

66
const transform = function (res, callback) {
77
callback(null, {

0 commit comments

Comments
 (0)