MCPcopy Create free account
hub / github.com/StackStorm/st2 / icontains

Function icontains

st2common/st2common/operators.py:191–196  ·  view source on GitHub ↗
(value, criteria_pattern)

Source from the content-addressed store, hash-verified

189
190
191def icontains(value, criteria_pattern):
192 if criteria_pattern is None:
193 return False
194
195 value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern)
196 return criteria_pattern.lower() in value.lower()
197
198
199def ncontains(value, criteria_pattern):

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected