Clean up JSDoc on Slugify

- Ensure it's added directly above the function
- Update the description to match the options
pull/12382/head
LB Johnston 2024-10-02 13:29:30 +10:00 zatwierdzone przez LB (Ben Johnston)
rodzic 4727663fa6
commit 3d5c20863c
1 zmienionych plików z 2 dodań i 3 usunięć

Wyświetl plik

@ -1,9 +1,8 @@
/**
* Returns the supplied string as a slug, accepts options.unicodeSlugsEnabled to support
* Returns the supplied string as a slug, accepts options.allowUnicode to support
* additional characters being allowed.
* special characters of other languages which are not validated by django's slug validator are discarded.
* Special characters of other languages which are not validated by django's slug validator are discarded.
*/
export const slugify = (
value: string,
{ allowUnicode = false }: { allowUnicode?: boolean } = {},