Dmitrii Bykov

Results 3 comments of Dmitrii Bykov

Hey! Yeah, that sounds reasonable. Or maybe it's better to implement a special flag for those who need it?

I think, rxjs >= 6.3.0 doesn't work with focal 0.6.438 because of that. Lift just can't recognize that some of the properties are an Observable instance.

My solution: ``` javascript switch (value) { case 'null': value = null; break; case 'true': value = true; break; case 'false': value = false; } if (!isNaN(parseFloat(value)) && isFinite(value)) value...