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/dasherize.js

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

module.exports = function dasherize(str) {
  return trim(str).replace(/([A-Z])/g, '-$1').replace(/[-_\s]+/g, '-').toLowerCase();
};