MCPcopy Index your code
hub / github.com/angular-ui/ui-router / manualLowercase

Function manualLowercase

test/angular/1.3/angular.js:208–213  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

206
207
208var manualLowercase = function(s) {
209 /* jshint bitwise: false */
210 return isString(s)
211 ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);})
212 : s;
213};
214var manualUppercase = function(s) {
215 /* jshint bitwise: false */
216 return isString(s)

Callers

nothing calls this directly

Calls 1

isStringFunction · 0.70

Tested by

no test coverage detected