File tree 4 files changed +14
-28
lines changed
4 files changed +14
-28
lines changed Original file line number Diff line number Diff line change @@ -18,38 +18,31 @@ <h4>Indexed Text: "Gulliver's Travels" (Swift Jonathan 1726)</h4>
18
18
suite [ "flexsearch-0.6.2" ] = {
19
19
20
20
init : function ( ) {
21
-
22
21
lib = new FlexSearch ( {
23
-
24
22
encode : "icase" ,
25
23
tokenize : "strict" ,
26
24
resolution : 9 ,
27
25
threshold : 8 ,
28
26
depth : 1
29
27
} ) ;
30
-
31
- window [ "lib" ] = lib ;
28
+ //window["lib"] = lib;
32
29
} ,
33
30
add : function ( data ) {
34
-
35
31
for ( let i = 0 , len = data . length ; i < len ; i ++ ) {
36
-
37
32
lib . add ( i , data [ i ] ) ;
38
33
}
39
34
} ,
40
- update : function ( id ) {
41
-
35
+ update : function ( data ) {
42
36
for ( let i = 0 , len = data . length ; i < len ; i ++ ) {
43
-
44
37
lib . add ( i , data [ i ] ) ;
45
38
}
46
39
} ,
47
- remove : function ( id ) {
48
-
49
- lib . remove ( id ) ;
40
+ remove : function ( data ) {
41
+ for ( let i = 0 , len = data . length ; i < len ; i ++ ) {
42
+ lib . remove ( i ) ;
43
+ }
50
44
} ,
51
45
query : function ( query ) {
52
-
53
46
return lib . search ( query ) ;
54
47
}
55
48
} ;
Original file line number Diff line number Diff line change @@ -18,38 +18,31 @@ <h4>Indexed Text: "Gulliver's Travels" (Swift Jonathan 1726)</h4>
18
18
suite [ "flexsearch-0.6.3" ] = {
19
19
20
20
init : function ( ) {
21
-
22
21
lib = new FlexSearch ( {
23
-
24
22
encode : "icase" ,
25
23
tokenize : "strict" ,
26
24
resolution : 9 ,
27
25
threshold : 8 ,
28
26
depth : 1
29
27
} ) ;
30
-
31
- window [ "lib" ] = lib ;
28
+ //window["lib"] = lib;
32
29
} ,
33
30
add : function ( data ) {
34
-
35
31
for ( let i = 0 , len = data . length ; i < len ; i ++ ) {
36
-
37
32
lib . add ( i , data [ i ] ) ;
38
33
}
39
34
} ,
40
- update : function ( id ) {
41
-
35
+ update : function ( data ) {
42
36
for ( let i = 0 , len = data . length ; i < len ; i ++ ) {
43
-
44
37
lib . add ( i , data [ i ] ) ;
45
38
}
46
39
} ,
47
- remove : function ( id ) {
48
-
49
- lib . remove ( id ) ;
40
+ remove : function ( data ) {
41
+ for ( let i = 0 , len = data . length ; i < len ; i ++ ) {
42
+ lib . remove ( i ) ;
43
+ }
50
44
} ,
51
45
query : function ( query ) {
52
-
53
46
return lib . search ( query ) ;
54
47
}
55
48
} ;
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ <h4>Indexed Text: "Gulliver's Travels" (Swift Jonathan 1726)</h4>
46
46
} ,
47
47
remove : function ( data ) {
48
48
for ( let i = 0 , len = data . length ; i < len ; i ++ ) {
49
- lib . remove ( i , data [ i ] ) ;
49
+ lib . remove ( i ) ;
50
50
}
51
51
}
52
52
} ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ <h4>Indexed Text: "Gulliver's Travels" (Swift Jonathan 1726)</h4>
52
52
} ,
53
53
remove : function ( data ) {
54
54
for ( let i = 0 , len = data . length ; i < len ; i ++ ) {
55
- lib . remove ( i , data [ i ] ) ;
55
+ lib . remove ( i ) ;
56
56
}
57
57
}
58
58
} ;
You can’t perform that action at this time.
0 commit comments