MCPcopy Create free account
hub / github.com/apache/cloudstack / isWhitespace

Function isWhitespace

tools/ngui/static/js/lib/angular.js:5867–5870  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

5865 return '0' <= ch && ch <= '9';
5866 }
5867 function isWhitespace(ch) {
5868 return ch == ' ' || ch == '\r' || ch == '\t' ||
5869 ch == '\n' || ch == '\v' || ch == '\u00A0'; // IE treats non-breaking space as \u00A0
5870 }
5871 function isIdent(ch) {
5872 return 'a' <= ch && ch <= 'z' ||
5873 'A' <= ch && ch <= 'Z' ||

Callers 2

lexFunction · 0.85
readIdentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected