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

Function isIdent

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

Source from the content-addressed store, hash-verified

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' ||
5874 '_' == ch || ch == '$';
5875 }
5876 function isExpOperator(ch) {
5877 return ch == '-' || ch == '+' || isNumber(ch);
5878 }

Callers 2

lexFunction · 0.85
readIdentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected