import { prettyPrintArray } from '../forArrays/prettyPrintArray'; const prettyPrintSet = function (value: Set, depth = 0): string { const prettyPrintedArray = prettyPrintArray([ ...value ], depth); return `Set(${prettyPrintedArray})`; }; export { prettyPrintSet };