Aleksei Otts

Results 5 issues of Aleksei Otts

Json path like dsl support ``` JsonPath.foo.bar.baz.as[Int] ```

new feature

new feature
integrations

Now we just build JsonReader/JsonWriter and let compiler show compilation errors. And if some of implicits missing it show error only about one value.

Instead of ``` javascript isElContained: function(findEl){ return this._el === findEl || $(this._el).has(findEl).length > 0; } ``` should be ``` javascript isElContained: function(findEl){ return this._el[0] === findEl || $(this._el).has(findEl).length > 0;...