版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567
  1. import { truncate, truncator } from './helpers'
  2. export default function inspectBigInt(number, options) {
  3. let nums = truncate(number.toString(), options.truncate - 1)
  4. if (nums !== truncator) nums += 'n'
  5. return options.stylize(nums, 'bigint')
  6. }