diff --git a/seo.js b/seo.js new file mode 100644 index 0000000..6a69016 --- /dev/null +++ b/seo.js @@ -0,0 +1,7 @@ +// FIXME nodejs only atm +var slug = require('./slug'); + +// remove periods and quotation marks to be SEO friendly +slug.defaults.remove = /[.'"]/g; + +module.exports = slug;