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

Function manualLowercase

lib/test/angular/1.4.3/angular.js:217–222  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

isStringFunction · 0.70

Tested by

no test coverage detected