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

Function _escape_argspec

tools/inspector_protocol/markupsafe/__init__.py:203–208  ·  view source on GitHub ↗

Helper for various string-wrapped functions.

(obj, iterable, escape)

Source from the content-addressed store, hash-verified

201
202
203def _escape_argspec(obj, iterable, escape):
204 """Helper for various string-wrapped functions."""
205 for key, value in iterable:
206 if hasattr(value, '__html__') or isinstance(value, string_types):
207 obj[key] = escape(value)
208 return obj
209
210
211class _MarkupEscapeHelper(object):

Callers 1

funcMethod · 0.70

Calls 1

escapeFunction · 0.90

Tested by

no test coverage detected