Undescorize, Dasherize, Capitalize String Prototype
Basta compartilhar algumas funções úteis para estender o objeto String: Underscorize “SomeStringTesting'”.underscorize() retornarásome_string_testing String.prototype.underscorize = function() { return this.replace(/[A-Z]/g, function(char, index) { return (index !== 0 ? ‘_’ : ”) …
Continuar lendo