You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe your user scenario
We have several places where we have a bunch of flags, or optional variables.
Instead of seeing something like
// no longer optionalconstoptionalValue: any|undefined=undefined;someFunctionCall(true,true,false,optionalValue,true);
I would prefer to see param objects where they make sense for named variables.
// optional value not included.// easier understanding of how flags are set.someFunctionCall({optionA: true,optionB: true,optionC: false,optionD: true,});
Places to consider
LiveObjectSynchronizer.start()
LiveMediaSession_Synchronizer.spec.getObjects()
LivePresence.updateInternal()
TODO: Definitely are more
The text was updated successfully, but these errors were encountered:
Describe your user scenario
We have several places where we have a bunch of flags, or optional variables.
Instead of seeing something like
I would prefer to see param objects where they make sense for named variables.
Places to consider
The text was updated successfully, but these errors were encountered: