MCPcopy Create free account
hub / github.com/EasyIME/PIME / javascript_files

Method javascript_files

python/python3/tornado/web.py:3333–3340  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3331 return "\n".join(self._get_resources("embedded_javascript"))
3332
3333 def javascript_files(self) -> Iterable[str]:
3334 result = []
3335 for f in self._get_resources("javascript_files"):
3336 if isinstance(f, (unicode_type, bytes)):
3337 result.append(f)
3338 else:
3339 result.extend(f)
3340 return result
3341
3342 def embedded_css(self) -> str:
3343 return "\n".join(self._get_resources("embedded_css"))

Callers

nothing calls this directly

Calls 2

_get_resourcesMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected