Sha256: 29b9313ba4376768d3f48d46a7f578796bc5752d9d17c5aa4f16c49e5531d5c9
Contents?: true
Size: 414 Bytes
Versions: 26
Compression:
Stored size: 414 Bytes
Contents
import { inspectList } from './helpers.js'; // IE11 doesn't support `Array.from(set)` function arrayFromSet(set) { const values = []; set.forEach(value => { values.push(value); }); return values; } export default function inspectSet(set, options) { if (set.size === 0) return 'Set{}'; options.truncate -= 7; return `Set{ ${inspectList(arrayFromSet(set), options)} }`; }
Version data entries
26 entries across 26 versions & 1 rubygems