6 lines
153 B
JavaScript
6 lines
153 B
JavaScript
|
module.exports = function toId() {
|
||
|
return {
|
||
|
name: 'toId',
|
||
|
process: function(str) { return str.replace(/[^(a-z)(A-Z)(0-9)._-]/g, '-'); }
|
||
|
};
|
||
|
};
|