url-nimopoly
v1.1.0
Published
special-characters remover from url
Downloads
9
Maintainers
Readme
Nimopoly
Installation
$ npm install url-nimopoly
How to configure
const nimoPoly = require('url-nimopoly')
//Define your navigation list array
nimoPoly.navlist = ["index","profile","about-us","contact us"]
//If you use express js for routing
app.get('/:nav',function(req,res){
res.send(nimoPoly.check(req.params.nav),{
})
})