slugish
v1.0.0
Published
Simple way to slugify url for humans
Maintainers
Readme
slugish - A simple javascript based url preetier
Install
npm i slugish --save #for NPM
yarn add slugish #for yarnUsage
Method 1
const slugish = require('slugish');
console.log(slugish('test 123'));Method 2
require('slugish');
console.log('another test'.slugish());
// No need to name the import .. slugish is automatically added to the String classHope it helps !
