/** * Construct a new mutable map by copying this one */ export const toMutable = (m: ReadonlyMap): Map => new Map(m);