Skip to content

Commit 1aaea23

Browse files
authoredOct 5, 2022
Fix handling of plural acronyms (#69)
1 parent 2cc3aff commit 1aaea23

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ const decamelize = string => {
99
.replace(/([a-z\d]+)([A-Z]{2,})/g, '$1 $2')
1010

1111
.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-rt-z\d]+)/g, '$1 $2');
1315
};
1416

1517
const removeMootSeparators = (string, separator) => {

‎test.js

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ test('main', t => {
2424
t.is(slugify('foo360BAR'), 'foo360-bar');
2525
t.is(slugify('FOO360'), 'foo-360');
2626
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');
2730
});
2831

2932
test('custom separator', t => {

0 commit comments

Comments
 (0)
Please sign in to comment.