GrosSacASac/utilsac

make deepCopy also work with Sets and Maps

GrosSacASac opened this issue · 0 comments

Draft for Map:

copy = new Map(Array.from(x, ([key, value]) => {
    return [key, deepCopy(value)];
}));