Matjaž Lipuš
Matjaž Lipuš
I like "is" instead of instanceof. Just don't forget about inheritance, so also ancestor methods can be invoked. Calling `answer()` without `this` would have different behaviour than in TypeScript. I...
Just as small optimisation, string rules expressions `"true"` and `"false"` could be converted to boolean. e.g. `{".write": "true"}` => `{".write": true}`
I think `getPriority()` should be supported.
Currently I don't, but I was thinking about it. For example /games/1 ``` json { "lastMove": "1,1" } ``` /gamesMoves/1 ``` json { "0,0": {".priority": 1}, "1,1": {".priority": 2} }...
That's what a thought. Thanks. btw. there is no notice about deprecation. https://www.firebase.com/docs/web/api/datasnapshot/getpriority.html priority also have use case when you query parent object of collection (players/x). /games/1 ``` json {...
I've kinda (temporarily) solved it with shrinkwrap ``` npm help shrinkwrap ```
OK. But still this does not solve the issue: same version of browserify can not be installed anymore from our build script without changing it. If nothing else, update `package.json`...
there are no breaking changes except PHP ver. https://github.com/php-fig/container/compare/1.1.2...2.0.2
that's true, but using module in this syntax is specific to node-di. For example to access Car you have to write ``` module.car[1] ``` which is a bit cumbersome and...
alternatively (what `di.type()` does is): ``` Car.$type = 'type'; var module = { car: Car, power: 1184 } ```