basic set import works

This commit is contained in:
2026-03-13 18:04:08 +01:00
parent 45701259a4
commit 8ace9c0fd5
1100 changed files with 197467 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
'use strict';
var inspect = require('../');
var Buffer = require('safer-buffer').Buffer;
var holes = ['a', 'b'];
holes[4] = 'e';
holes[6] = 'g';
var obj = {
a: 1,
b: [3, 4, undefined, null],
c: undefined,
d: null,
e: {
regex: /^x/i,
buf: Buffer.from('abc'),
holes: holes
},
now: new Date()
};
obj.self = obj;
console.log(inspect(obj));