MCPcopy Create free account
hub / github.com/bugy/script-server / is_integer

Function is_integer

src/utils/string_utils.py:12–17  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

10
11
12def is_integer(text):
13 try:
14 int(text)
15 return True
16 except ValueError:
17 return False
18
19
20def unwrap_quotes(string):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected