是否可以将Funtion {}转换为实函数类型?
const foo = function(){ return 233 }
const bar = { __proto__: foo }
foo.prototype == bar.prototype //true
bar() //TypeError: bar is not a function
foo
// [Function: foo]
bar
// Function {}
'bar'实际上几乎与'foo'接近,但是它无法被调用。像“ foo”一样还需要做什么?