On Sat, May 31, 2014 at 11:06 PM, Domenic Denicola <[email protected]> wrote: > - Named constructors scare me (I can't figure out how to make them work in > JavaScript without breaking at least one of the normal invariants). I think a > static factory method would make more sense for RedirectResponse.
What invariants are you concerned about? Using NamedConstructor is
identical to doing:
```js
class Foo { ... }
let Bar = Foo;
// now I can do "new Foo()" or "new Bar()", to the same effect.
```
~TJ
