Michal

Results 63 issues of Michal

Most errors are now i18n-friendly (see #35), however errors produced by Jison are not. Investigate the possibility to modify Jison, so that it produces better errors.

enhancement
help wanted

The [examples](https://github.com/m93a/filtrex/tree/main/example) section hasn't changed much since v0. Make it fresh and cool.

help wanted
good first issue
documentation

The core engine should be able to compare numbers, alphabetical strings (with natural sorting) and arrays (element by element, lexicographically, useful for multisort), so that filtrex can be used for...

enhancement

Let people willing to contribute know some basics facts about this repo

documentation

Make this: ``` a^2 + 2 a b + b^2 ``` parse as this: ``` a**2 + 2*a*b + b**2 ``` The implicit multiplication operator can be overloaded (see #30)...

enhancement
help wanted

The Jison parser generator makes it hard to write advanced language features (like implicit multiplication, see #39). Maybe, migrating to a modern PEG parser would be worth it. [Peggy](https://github.com/peggyjs/peggy) looks...

enhancement
help wanted

Since there are speculations about porting math.js to math.ts (see [#2076](https://github.com/josdejong/mathjs/issues/2076)), I think porting typed-function to TypeScript would be a good start. This PR is something between a proof-of-concept and...

Are there any updates on the state of this proposal? I find both the unary and the binary variant to be very useful and esthetic and I would definitely use...

``` javascript var foo = {}; foo.cyclic = foo; var bar = Object.clone(foo, true); //This is definitely wrong bar.cyclic === foo; bar.cyclic !== bar; ``` ``` javascript var foo =...

We need to add TypedArray support https://goo.gl/asENrB