As we know we create a proxy like this.
var proxy = new Proxy(target, handler);
I however want to get a new proxy object by simply calling a function
var proxy = CreateAProxy(target,handler);
basically without using the new
keyword. How do i proceed in spidermonkey for achieving this.