|
BN.prototype.inspect = function inspect () { |
|
return (this.red ? '<BN-R: ' : '<BN: ') + this.toString(16) + '>'; |
|
}; |
Now this is deprecated: https://nodejs.org/api/deprecations.html#deprecations_dep0079_custom_inspection_function_on_objects_via_inspect
Any thought how we can resolve it? Require util is not a option, right?