HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/f/r/e/frenchy/www/french-american.org/current/node_modules/object-inspect/test/bigint.js
var inspect = require('../');
var test = require('tape');

test('bigint', { skip: typeof BigInt === 'undefined' }, function (t) {
  t.test('primitives', function (st) {
    st.plan(3);

    st.equal(inspect(BigInt(-256)), '-256n');
    st.equal(inspect(BigInt(0)), '0n');
    st.equal(inspect(BigInt(256)), '256n');
  });

  t.test('objects', function (st) {
    st.plan(3);

    st.equal(inspect(Object(BigInt(-256))), 'Object(-256n)');
    st.equal(inspect(Object(BigInt(0))), 'Object(0n)');
    st.equal(inspect(Object(BigInt(256))), 'Object(256n)');
  });

  t.test('syntactic primitives', function (st) {
    st.plan(3);

    st.equal(inspect(Function('return -256n')()), '-256n');
    st.equal(inspect(Function('return 0n')()), '0n');
    st.equal(inspect(Function('return 256n')()), '256n');
  });

  t.end();
});