Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

mimorisuzuko/fz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fz

My fuzzy search.

fz(target: string, input: string, ignoreCase?: boolean): { matched: boolean, results: { matched: boolean , char: string }[] }

Example

fz('GitHub', 'Gh')

{
	matched: true,
	results: [
		{ matched: true, char: 'G' },
		{ matched: false, char: 'i' },
		{ matched: false, char: 't' },
		{ matched: false, char: 'H' },
		{ matched: false, char: 'u' },
		{ matched: false, char: 'b' }
	]
}

fz('GitHub', 'Gh', true)

{
	matched: true,
	results: [
		{ matched: true, char: 'G' },
		{ matched: false, char: 'i' },
		{ matched: false, char: 't' },
		{ matched: true, char: 'H' },
		{ matched: false, char: 'u' },
		{ matched: false, char: 'b' }
	]
}

Releases

No releases published

Packages

No packages published