reverofevil
reverofevil
@brandonros Same problem. Running as administrator doesn't help. *UPD.* It doesn't matter what port do you use. It doesn't work at all. The reason are two rows in `server.js` that...
Need this for an implementation of DI. I can't really see how type error is justified in the following example. ```ts class Base { static foo = (): T =>...
I'm unsure if conditional `/u` won't lead to unexpected behavior. IMO it should be a generator option, and as such can be already supported. I'd rather change to `/u` by...
> I actually prefer the workaround using a plugin I just wanted to point out that regular expression language is not regular, and thus cannot be parsed with regular expressions....
Why? Half the web depends on it, and it's often more convenient for parsers than `slice` or `substring`. At the very least it shouldn't block any releases.
To check that `a` contains `b` starting with a certain position (with correct handling of potential end of string) is usually done as `a.substr(peg$pos, b.length) === b`. The other two...
This is still an issue.
Partially taken from [here](https://github.com/kgtkr/typepark/blob/master/src/list.ts).
It quickly turned out that `_` can be passed only to something like data constructors, i.e. generic types that have no preference on their parameters. As `Head` didn't work, I...
It's an unanticipated problem in the library in its current state. It's impossible to create a type-lambda for a type that explicitly asks its parameter to `extend` something, like `Head`....