jiti-meet/react/features/base/util
Saúl Ibarra Corretgé 0e92e73789 chore: use strings as action types
Using anything non-serializable for action types is discouraged:
https://redux.js.org/faq/actions#actions

In fact, this is the Flow definition for dispatching actions:

declare export type DispatchAPI<A> = (action: A) => A;
declare export type Dispatch<A: { type: $Subtype<string> }> = DispatchAPI<A>;

Note how the `type` field is defined as a subtype of string, which Symbol isn’t.
2019-03-21 14:47:55 +01:00
..
helpers.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
httpUtils.js improve invite error handling (#2649) 2018-03-23 09:37:04 -07:00
index.js ref: js-utils for random and room name generator (#3975) 2019-03-19 10:35:36 -07:00
loadScript.native.js [RN] Add a timeout for loading the configuration 2017-12-05 21:07:15 -06:00
loadScript.web.js [RN] Add a timeout for loading the configuration 2017-12-05 21:07:15 -06:00
timeoutPromise.js [RN] Add a timeout for loading the configuration 2017-12-05 21:07:15 -06:00
uri.js rn: support passing serverURL and room to URL object 2019-03-12 16:55:28 +01:00