You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using lunr.py to create a search index for use with lunr.js, and I hit an issue that I believe is due to differences in how Python and JavaScript compare strings.
One example to reproduce the issue:
"🔥" < "\uf0ae"
This evaluates to false in Python but true in JavaScript.
What's the best way to handle this?
The text was updated successfully, but these errors were encountered:
I'm using lunr.py to create a search index for use with lunr.js, and I hit an issue that I believe is due to differences in how Python and JavaScript compare strings.
One example to reproduce the issue:
This evaluates to false in Python but true in JavaScript.
What's the best way to handle this?
The text was updated successfully, but these errors were encountered: