node-slug icon indicating copy to clipboard operation
node-slug copied to clipboard

Slug does not remove Unicode Characters

Open ddaza opened this issue 9 years ago • 0 comments

Tried to make it so slug removes some special characters, but it seems to be broken.

var slugName = slug(name, {lower: true, remove: /®/g})

is not working

var slugName = slug(name, {lower: true, remove: new RegExp('\u00AE', 'g')})

didn't work either.

thanks!

ddaza avatar Mar 01 '16 19:03 ddaza