Your IP : 216.73.217.154


Current Path : /var/www/html/eform/npm/Ladda/node_modules/underscore.string/
Upload File :
Current File : /var/www/html/eform/npm/Ladda/node_modules/underscore.string/slugify.js

var trim = require('./trim');
var dasherize = require('./dasherize');
var cleanDiacritics = require('./cleanDiacritics');

module.exports = function slugify(str) {
  return trim(dasherize(cleanDiacritics(str).replace(/[^\w\s-]/g, '-').toLowerCase()), '-');
};