From c3f49c84a073f5319d8b6c51503973c6c2e03e96 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 6 May 2020 13:56:14 +0300 Subject: [PATCH] doc... Signed-off-by: Alex A. Naanou --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c36abd7..d0f1617 100755 --- a/README.md +++ b/README.md @@ -68,10 +68,11 @@ var B = object.Constructor('B', A, { }) ``` -- Clear separation of constructor and `.prototype` data: +- No _direct_ way to do "private" definitions, +- Clear separation of constructor and `.prototype` + For example, in `B`: - First block (optional) is merged with `B`, - Second block _is_ the `B.prototype`, -- No _direct_ way to do "private" definitions, - No special syntax, less distinct.