slugifi

1.0.7 • Public • Published

Slugifi

version downloads license

Slugifi is small package for creating a slug from a string.

 

Release Notes (v1.0.7)

You can now remove special characters from string by enabling specialChars property from the options.

 

Installation

Npm :

$ npm install slugifi

Yarn :

$ yarn add slugifi

Pnpm :

$ pnpm add slugifi

 

Usage

ES6 :

import slugifi from 'slugifi';

slugifi('Random text'); // Outputs: random-text

CommonJS :

const slugifi = require('slugifi');

slugifi('Random text'); // Outputs: random-text

 

Options

slugifi('some text', {
  separator: '_', // defaults to '-'
  capitalize: true, // defaults to false
  specialChars: false, // defaults to true
});

 

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i slugifi

Weekly Downloads

4

Version

1.0.7

License

MIT

Unpacked Size

2.55 kB

Total Files

4

Last publish

Collaborators

  • suzan-dev