comments...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-08-09 23:42:02 +03:00
parent 98d5b36274
commit 0d1ed3b7ac

View File

@ -361,6 +361,7 @@
function List(){ function List(){
var obj = this instanceof List ? var obj = this instanceof List ?
this this
// create an array base object but link it to List...
: Reflect.construct(Array, arguments, List) : Reflect.construct(Array, arguments, List)
return obj return obj
} }