forked from DebaucheryLibrarian/traxxx
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
'use strict';
|
|
|
|
function slugify(string, encode = false) {
|
|
const slug = string.trim().toLowerCase().match(/\w+/g).join('-');
|
|
|
|
return encode ? encodeURI(slug) : slug;
|
|
}
|
|
|
|
module.exports = slugify;
|