File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ const decamelize = string => {
9
9
. replace ( / ( [ a - z \d ] + ) ( [ A - Z ] { 2 , } ) / g, '$1 $2' )
10
10
11
11
. replace ( / ( [ a - z \d ] ) ( [ A - Z ] ) / g, '$1 $2' )
12
- . replace ( / ( [ A - Z ] + ) ( [ A - Z ] [ a - z \d ] + ) / g, '$1 $2' ) ;
12
+ // `[a-rt-z]` matches all lowercase characters except `s`.
13
+ // This avoids matching plural acronyms like `APIs`.
14
+ . replace ( / ( [ A - Z ] + ) ( [ A - Z ] [ a - r t - z \d ] + ) / g, '$1 $2' ) ;
13
15
} ;
14
16
15
17
const removeMootSeparators = ( string , separator ) => {
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ test('main', t => {
24
24
t . is ( slugify ( 'foo360BAR' ) , 'foo360-bar' ) ;
25
25
t . is ( slugify ( 'FOO360' ) , 'foo-360' ) ;
26
26
t . is ( slugify ( 'FOOBar' ) , 'foo-bar' ) ;
27
+ t . is ( slugify ( 'APIs' ) , 'apis' ) ;
28
+ t . is ( slugify ( 'APISection' ) , 'api-section' ) ;
29
+ t . is ( slugify ( 'Util APIs' ) , 'util-apis' ) ;
27
30
} ) ;
28
31
29
32
test ( 'custom separator' , t => {
You can’t perform that action at this time.
0 commit comments