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