From 90508c672c12ad8402466f5ce2c2d14eb6bb69ea Mon Sep 17 00:00:00 2001 From: Dan Wolff Date: Mon, 5 Feb 2018 22:44:01 +0100 Subject: [PATCH] "Object properties can be added, removed and modified" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f06ae0af..a34ba1f9 100644 --- a/README.md +++ b/README.md @@ -1114,7 +1114,7 @@ To allow for better optimizations, the compiler makes various assumptions. `Error.prototype.stack` to be anything in particular. - Getting and setting properties on a plain object does not cause other side effects (using `.watch()` or `Proxy`). -- Object properties are able to be added (not prevented with +- Object properties can be added, removed and modified (not prevented with `Object.defineProperty()`, `Object.defineProperties()`, `Object.freeze()`, `Object.preventExtensions()` or `Object.seal()`).