-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(slugify): return non ASCII characters
- Loading branch information
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import slugify from 'slugify' | ||
|
||
export const slug = str => slugify(str.toLowerCase()) | ||
export const slug = str => slugify(str.toLowerCase()) || str |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { slug } from './' | ||
|
||
describe('helpers', () => { | ||
it('slugify string', () => { | ||
expect(slug('First Name')).toBe('first-name') | ||
}) | ||
|
||
it('slugify only ASCII characters', () => { | ||
expect(slug('本社名 または 屋号 Company Name')).toBe('company-name') | ||
}) | ||
|
||
it('return default string if non ASCII characters', () => { | ||
const str = '本社名 または 屋号' | ||
expect(slug(str)).toBe(str) | ||
}) | ||
}) |