dtrim
Version:
A tool for trimming deep/lenghty javascript structures. Some potential usages are: debugging, logging or data sanitization.
25 lines • 569 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const map = new Map();
map.set('foo', 'bar');
const set = new Set();
set.add('foo');
exports.default = {
buffer: Buffer.from('abc'),
array: ['foo', 'bar'],
object: { foo: 'bar' },
string: 'foo bar',
fn: () => 1 + 1,
foo: null,
bar: undefined,
baz: false,
bao: NaN,
gao: 123,
shao: 123.321,
big: BigInt(123),
sym: Symbol('dummy'),
map,
set,
date: new Date('2024-03-12T05:29:06.048Z'),
};
//# sourceMappingURL=fixture-types.js.map