2.2.0 • Published 4 years ago

@taishikato/slug-generator v2.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

@taishikato/slug-generator

npm (scoped) npm bundle size (scoped)

Install

With npm

$ npm i @taishikato/slug-generator

With yarn

$ yarn add @taishikato/slug-generator

Usage

import generateSlug from '@taishikato/slug-generator';

generateSlug('My first blog post title (March 21)');
// → my-first-blog-post-title-march-21

/**
 * When you pass true as a second argument, the slug will have a random strings at the end
 * This is useful when some items(i.e. blog posts) can have the same title, which means those will have the same slug
 * and you want a unique slug for each item.
 */
generateSlug('My first blog post title (March 21)', true);
// → my-first-blog-post-title-march-21-1cc703f7
2.2.0

4 years ago

2.1.0

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.0.0

4 years ago