Uncaught TypeError: angular.lowercase is not a function
this error in my angularjs application, and entire application is not running. This
Angular 1.7.* still has lowercase function but it's renamed to $$lowercase. This is a possible workaround. Buyer beware based on Angular documentation.
angular.module('MyApp').config(function() { angular.lowercase = angular.$$lowercase; });