MCPcopy Index your code
hub / github.com/nodejs/node / IsAlpha

Function IsAlpha

tools/test.py:1099–1103  ·  view source on GitHub ↗
(str)

Source from the content-addressed store, hash-verified

1097
1098
1099def IsAlpha(str):
1100 for char in str:
1101 if not (char.isalpha() or char.isdigit() or char == '_'):
1102 return False
1103 return True
1104
1105
1106class Tokenizer(object):

Callers 2

TokenizeMethod · 0.85
ParseAtomicExpressionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…