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

This commit is contained in:
2025-02-19 21:56:14 +01:00
parent 84479c786a
commit 04c7348e7a
18 changed files with 9701 additions and 40 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