mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
6 lines
No EOL
153 B
JavaScript
6 lines
No EOL
153 B
JavaScript
module.exports = function toId() {
|
|
return {
|
|
name: 'toId',
|
|
process: function(str) { return str.replace(/[^(a-z)(A-Z)(0-9)._-]/g, '-'); }
|
|
};
|
|
}; |