Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
didyoumean3
Advanced tools
🚀 the super fast and easy didyoumean which use dice-coefficient and levenshtein
notice: Covers most situations and still needs to be optimized, i will do better!
npm i didyoumean3
import didyoumean3 from 'didyoumean3'
// or
const { didyoumean3 } = require('didyoumean3');
let input = 'insargrm'
let list = [
'facebook', 'INSTAgram', ' in stagram', 'baidu', 'twitter', 'wechat', 'instagram', 'linkedin'
]
didyoumean3(input, list)
// will output:
// {
// winner: 'instagram',
// matches: [
// {
// score: 8,
// target: 'facebook',
// },
// {
// score: 3,
// target: 'instagram',
// },
// {
// score: 7,
// target: 'linkedin',
// },
// // ...
// ],
// }
didyoumea3
has some built-in string formatting configuration items:
ignore
: default is false, Case-insensitivetrim
: default is true, will use string.trim
format the stringtrimAll
: defalut is false, will trim with regexp /\s+/g
diacritics
: default is false, just 'café' -> 'café'.normalize()normalize
: customize the formatting function by yourself🔥If these parameters don't meet your requirements, you can customize the formatting function through normalize
.
🔥When using the custom normalize function, the above string formatting configurations will fail
didyoumean3(input, target, { normalize: (s: string) => s.trim() } );
val
: sometimes, you need to match against a list of object. you can use val
to get the target string out.let l = [
{ id: 'facebook' },
{ id: 'baidu' },
{ id: 'twitter' },
{ id: 'INSTAgram' },
{ id: ' in stagram' },
{ id: 'wechat' },
{ id: 'instagram' },
{ id: 'linkedin' },
];
didyoumean3(input, target, { val: item => item.id } );
result
: Customize the structure of the results you want to returntype Res = null | { matches: any[], winner: string }
const result = (res: Res) => {
if (!res) return 'nothing matched!'
else return res
}
didyoumean3(input, target, { result } );
filter
: You can filter the results you want, such as those with a score greater than 5let i2 = 'insargrm';
let l2 = ['facebook', 'instagram', 'linkedin'];
expect(
didyoumean3(i2, l2, { filter: (score: number, item: any) => score >= 7 })
?.matches.length
).toBe(2);
didyoumean x 194,593 ops/sec ±1.07% (84 runs sampled)
didyoumean2 x 311,318 ops/sec ±0.63% (90 runs sampled)
didyoumean3 x 510,067 ops/sec ±0.48% (84 runs sampled)
Fastest is didyoumean3-leven
nobody now.
Both issure and pr are welcome!
FAQs
🚀 The fastest and easiest「didyoumean」in the universe via levenshtein algorithm
The npm package didyoumean3 receives a total of 576 weekly downloads. As such, didyoumean3 popularity was classified as not popular.
We found that didyoumean3 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.