eslint-plugin-immutable icon indicating copy to clipboard operation
eslint-plugin-immutable copied to clipboard

No mutation error on object increment

Open pianomanfrazier opened this issue 2 years ago • 0 comments

const obj = { a: 1 };
obj.a++;
console.log(obj);
// { a: 2 }

pianomanfrazier avatar Oct 19 '22 15:10 pianomanfrazier