# What is it?

This is a simple package to create slug for all languages.

Simple instal process ,

npm i slugify-unicode

yarn add slugify-unicode
```
const { slugify } = require('slugify-unicode'); /// for node 
or 
import { slugify } from "slugify-unicode";

console.log(
  slugify(
    'হরদীপ হত্যায় ভারতের জড়িত থাকার প্রমাণ অটোয়ার কাছে আছে: কানাডার গণমাধ্যম'
  )
);

```
