From b655b33d7172fceb0f31777358f55e9feb319611 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 6 May 2020 05:31:28 +0300 Subject: [PATCH] cleanup... Signed-off-by: Alex A. Naanou --- object.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/object.js b/object.js index 08f2ef5..90fab21 100755 --- a/object.js +++ b/object.js @@ -236,7 +236,6 @@ function(proto, name, that, ...args){ //--------------------------------------------------------------------- // Mixin utils... -// XXX should we add mixout(..) and friends ??? // Mix a set of methods/props/attrs into an object... // @@ -272,12 +271,6 @@ function(root, ...objects){ // // // NOTE: this will only mix in non-empty objects... -// -// XXX BUG: this is wrong... -// var m = { m: function(){ console.log('!!!') } } -// var a = object.Constructor('A', Array, {})() -// var aa = object.mixin(a, m) -// aa === a // -> false var mixin = module.mixin = function(root, ...objects){