mirror of
https://github.com/outline/outline.git
synced 2026-01-24 12:19:41 -06:00
11 lines
174 B
JavaScript
11 lines
174 B
JavaScript
// @flow
|
|
import slug from "slug";
|
|
|
|
slug.defaults.mode = "rfc3986";
|
|
|
|
export default function slugify(text: string): string {
|
|
return slug(text, {
|
|
remove: /[.]/g,
|
|
});
|
|
}
|