muta icon indicating copy to clipboard operation
muta copied to clipboard

Mutate your objects without mutating your objects

Results 15 muta issues
Sort by recently updated
recently updated
newest added

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

Currently Buffers are not wrapped, so mutating one will mutate the original. This should be prevented with a copy-on-write wrapper (not efficient for large Buffers, but probably fine).

There is a lot of room for performance improvements around the project, which is important since this is likely a major CPU-burner inside [`lotion`](https://github.com/keppel/lotion). I'd also like to add benchmarks...

As of `0.4.0` we support the array `splice` method, but limited to only the beginning and end of the array. It would be nice to support splicing in the middle,...

Currently missing a few, such as `ownKeys` (so currently iterating through keys falls back to the target). It's fine for some of them to throw an error (e.g. `setPrototype`).