8000 Tags · bvaughn/js-search · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: bvaughn/js-search

Tags

1.3.3

Toggle 1.3.3's commit message
Fixed a bug in `TfIdfSearchIndex` that caused errors when indexing ce…

…rtain reserved keywords (eg "constructor").

1.3.2

Toggle 1.3.2's commit message
Fixed tokenizer bug affecting IE <= 10 that caused prefix and substri…

…ng token strategies incorrectly index terms.

1.3.1

Toggle 1.3.1's commit message
Replaced `array.push.call` with `array.concat` in `addDocuments`.

This avoids potential stack overflow for large documents arrays.

1.3.0

Toggle 1.3.0's commit message
`Search.addIndex` supports `Array` parameter for nested values.

`Search` indexing supports non-string values (eg numbers).
Special thanks to @konradjurk for this release.

1.2.2

Toggle 1.2.2's commit message
Small tweak to Node export check to avoid `module is not defined` err…

…or for browser-based users.

1.2.1

Toggle 1.2.1's commit message
Modified export to better support Node environment (thanks to @scommisso

).

1.2.0

Added `ISearchIndex` interface in order to support TF-IDF (enabled by…

… default).

Removed `IPruningStrategy`; it didn't seem like it added sufficient value to offset performance costs.

1.1.1

Toggle 1.1.1's commit message
Udpated stop-words list to avoid filtering `Object.prototype` propert…

…ies.

1.1.0

Toggle 1.1.0's commit message
Refactored stemming and stop-word support to be based on `ITokenizer`…

… decorators for better accuracy.

Updated README examples with more info.

1.0.3

Toggle 1.0.3's commit message
Added `JsSearch` module wrapper around library and renamed `JsSearch`…

… class to `Search`.

Added stemming support by way of the new `StemmingSanitizerDecorator` class.
0