Handle all 64 bit two's-complement integer values which in object.
npm install object-int64Handle all 64 bit two's-complement integer values which in object.
``sh
npm i object-int64
`
`js`
const test = {
name: 'test',
id: 18446744073709551615
}
js// 18446744073709552000, get wrong number!
console.log(test.id)
`$3
`js
const objectInt64 = require('object-int64');const _test = objectInt64(test);
// 18446744073709551615
console.log(_test.id)
``