domenic at domenicdenicola.com (2014-06-20T19:22:57.620Z)
On 6/11/14, 10:58 AM, Rick Waldron wrote:
> ```js
> function isConstructor(C) {
>    try {
>      new C();
> ```
This will fail for constructors that require actual arguments, right?
For example, this will fail if `C === window.Worker` in a browser.
On 6/11/14, 10:58 AM, Rick Waldron wrote: > function isConstructor(C) { > try { > new C(); This will fail for constructors that require actual arguments, right? For example, this will fail if C === window.Worker in a browser. -Boris