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

Function manualLowercase

test/angular/1.2/angular.js:214–219  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

212
213
214var manualLowercase = function(s) {
215 /* jshint bitwise: false */
216 return isString(s)
217 ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);})
218 : s;
219};
220var manualUppercase = function(s) {
221 /* jshint bitwise: false */
222 return isString(s)

Callers

nothing calls this directly

Calls 1

isStringFunction · 0.70

Tested by

no test coverage detected