MCPcopy Index your code
hub / github.com/bugy/script-server / is_blank

Function is_blank

src/utils/string_utils.py:48–53  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

46
47
48def is_blank(value):
49 if not value:
50 return True
51 if not value.strip():
52 return True
53 return False
54
55
56def values_to_string(value):

Calls

no outgoing calls