DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
163 Bytes
var trim = require('./trim');
module.exports = function dasherize(str) {
return trim(str).replace(/([A-Z])/g, '-$1').replace(/[-_\s]+/g, '-').toLowerCase();
};