feat: add convenience functions, update Docker setup, and integrate Webpack for building WebRTC internals exporter
All checks were successful
Build Docker Images for Pull Request / build (pull_request) Successful in 15m20s
All checks were successful
Build Docker Images for Pull Request / build (pull_request) Successful in 15m20s
This commit is contained in:
5
utils/Convenience.py
Normal file
5
utils/Convenience.py
Normal file
@@ -0,0 +1,5 @@
|
||||
def firstValid(*args, default):
|
||||
for arg in args:
|
||||
if arg is not None:
|
||||
return arg
|
||||
return default
|
Reference in New Issue
Block a user