What is a fastest way to clone a function in JavaScript (with or without its properties)?
Two options coming to mind are eval(func.toString())
and function() { return func.apply(..) }
. But I am worried about performance of eval and wrapping will make stack worse and will probably degrade performance if applied a lot or applied to already wrapped.
new Function(args, body)
looks nice, but how exactly can I reliable split existing function to args and body without a JS parser in JS?
Thanks in advance.
Update: What I mean is being able to do
var funcB = funcA.clone(); // where clone() is my extension
funcB.newField = {...}; // without affecting funcA