Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
replacing all uppercase with _lowercase and removing first _ solution in Creative category for Conversion from CamelCase by lolucky
var fromCamelCase=(t)=>t.replace(/[A-Z]/g,c=>"_"+c.toLowerCase()).substr(1);
July 3, 2020