feat: add convenience functions, update Docker setup, and integrate Webpack for building WebRTC internals exporter
Some checks failed
Build Docker Image for Pull Request / build (pull_request) Failing after 35s

This commit is contained in:
2025-02-19 21:56:14 +01:00
parent 84479c786a
commit b05d7ca127
17 changed files with 9691 additions and 39 deletions

5
utils/Convenience.py Normal file
View File

@@ -0,0 +1,5 @@
def firstValid(*args, default):
for arg in args:
if arg is not None:
return arg
return default