Luca Ongaro

Results 108 comments of Luca Ongaro

and here is the smallest script where I can reproduce the bug. https://jsfiddle.net/egLzL24L/156/ It seems like it's a combination of the trimmer RegExp, a trailing non-word, a Unicode character in...

And here the bug is reproduced without Lunr, just a short snippet of code similar to the way Lunr builds a TokenSet and then turns it into an array. https://jsfiddle.net/8zn2fj6s/18/...

Ok, this seems the minimum script that reproduces it. No Lunr code nor any complex data structure is involved: https://jsfiddle.net/DukeLeNoir/mkrfw4g8/

I took the liberty to file a bug report on Safari, as this is now clearly a browser bug and not a Lunr issue.

@njh the RuboCop issue in #139 should be fixed by changing `class OpenSSL::SSL::SSLSocket` to: ```ruby module OpenSSL module SSL class SSLSocket # ...class body end end end ``` Or, alternatively,...

Hitting the same issue, only happening in development mode in a Ubuntu docker container with `ruby 2.6.4p104 (2019-08-28 revision 67798) [x86_64-linux]` and Rails 6.0

Here is the beginning of my stack trace: ``` /usr/local/bundle/gems/sassc-2.2.0/lib/sassc/engine.rb:42: [BUG] Segmentation fault at 0x0000000000000000 ruby 2.6.4p104 (2019-08-28 revision 67798) [x86_64-linux] -- Control frame information ----------------------------------------------- c:0156 p:---- s:1061 e:001060...

Correction, it works as expected, but on Android two entries have to be created for ``: ```xml ``` Otherwise the second one only won't match `https://example.com/app`, and the URL won't...

Sure @janpio here is a repo that reproduces the issue, with instructions on how to run in the README file: https://github.com/lucaong/cordova-whitelist-issue-32 It is a fresh Cordova project, with only the...

Consider that [`MiniSearch`](https://github.com/lucaong/minisearch) also exposes [its general purpose radix tree implementation as a module called `SearchableMap`](https://lucaong.github.io/minisearch/classes/_searchablemap_searchablemap_.searchablemap.html) that can be imported separately from the main module. It is a data structure...