您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

polyfills-browser.js 450B

12345678910111213141516171819
  1. import Storage from './Storage';
  2. (global => {
  3. // localStorage
  4. if (typeof global.localStorage === 'undefined') {
  5. global.localStorage = new Storage('@jitsi-meet/');
  6. }
  7. // sessionStorage
  8. //
  9. // Required by:
  10. // - herment
  11. // - Strophe
  12. if (typeof global.sessionStorage === 'undefined') {
  13. global.sessionStorage = new Storage();
  14. }
  15. })(global || window || this); // eslint-disable-line no-invalid-this