make deepCopy also work with Sets and Maps
GrosSacASac opened this issue · 0 comments
GrosSacASac commented
Draft for Map:
copy = new Map(Array.from(x, ([key, value]) => {
return [key, deepCopy(value)];
}));
GrosSacASac opened this issue · 0 comments
Draft for Map:
copy = new Map(Array.from(x, ([key, value]) => {
return [key, deepCopy(value)];
}));