UNPKG
fuzzy-tools
Version:
latest (2.0.1)
rc1 (2.1.0-rc1)
2.1.0-rc1
2.0.1
2.0.0
1.3.0
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
Functions for fuzzy matching and items filtering
github.com/axules/fuzzy-tools
axules/fuzzy-tools
fuzzy-tools
/
src
/
index.js
18 lines
(16 loc)
•
296 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import
{ matchString }
from
'./matchString'
;
import
{ matchList }
from
'./matchList'
;
import
{
match
}
from
'./match'
;
import
{
filter
}
from
'./filter'
; export {
match
, matchString, matchList,
filter
}; export default {
match
, matchString, matchList,
filter
};