MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / unwrap

Function unwrap

emrun.py:1422–1426  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

1420
1421# Be resilient to quotes and whitespace
1422def unwrap(s):
1423 s = s.strip()
1424 if (s.startswith('"') and s.endswith('"')) or (s.startswith("'") and s.endswith("'")):
1425 s = s[1:-1].strip()
1426 return s
1427
1428
1429def list_processes_by_name(exe_full_path):

Callers 1

runFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected