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
importlunrfrom"lunr"importstemmerSupportfrom'lunr-languages/lunr.stemmer.support.js'importlunrfrfrom'lunr-languages/lunr.fr.js'stemmerSupport(lunr)lunrfr(lunr)constdocs=[{text : "équipement, barrage",id: '1'},{text : "rivière",id: '2'}]constindex=lunr(function(){this.field('text')this.ref('id')for(constdocofdocs){this.add(doc)}})console.log('résultats pour "équipement"',index.search('équipement'))console.log('résultats pour "barrage"',index.search('barrage'))console.log('résultats pour "rivière"',index.search('rivière'))
All 3 console.log should return a result, but the first one does not
The text was updated successfully, but these errors were encountered:
Test case:
All 3 console.log should return a result, but the first one does not
The text was updated successfully, but these errors were encountered: