
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
jquery-fuzzymatch
Advanced tools
jQuery.fuzzyMatch implements a fuzzy-string-matching algorithm inspired by QuickSilver and Command-T in javascript.
It is designed for use as part of an autocompleter, where a finite list of possible strings are to be matched against the few characters that the user has typed.
It offers some improvement over existing prefix-based matches, though it is careful to ensure that if a prefix match has been typed, it will be shown first.
To use this with jQuery.ui.autocomplete, you do:
$("input").autocomplete({
source: function (context, callback) {
callback($(['dog', 'cat', 'cow']).filter(function (a) {
// Only show items which match
return $.fuzzyMatch(a, context.term).score;
}).sort(function (a, b) {
// And sort them by matchiness.
var score_a = $.fuzzyMatch(a, context.term).score,
score_b = $.fuzzyMatch(b, context.term).score;
return score_a < score_b ? -1 : score_a === score_b ? 0 : 1;
}));
},
delay: 0
});
This is all licensed under the MIT license, contributions are most welcome.
FAQs
jQuery.fuzzyMatch -----------------
The npm package jquery-fuzzymatch receives a total of 0 weekly downloads. As such, jquery-fuzzymatch popularity was classified as not popular.
We found that jquery-fuzzymatch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.