stemmer_test.js 149 B

1234567
  1. (function () {
  2. bench("stemmer", function () {
  3. Object.keys(stemmingFixture).forEach(function (word) {
  4. lunr.stemmer(word)
  5. })
  6. })
  7. })()