Browse Source

Merge pull request #8387 from evadne/issue-8386-webkit-subtle-crypto

amends Babel cache (#8364) implementation to also work on Safari
Yury Delendik 8 years ago committed by GitHub
parent
commit
7015c88ce9
  1. 3
      systemjs.config.js

3
systemjs.config.js

@ -36,7 +36,8 @@ @@ -36,7 +36,8 @@
var isCachingPossible = typeof indexedDB !== 'undefined' &&
typeof TextEncoder !== 'undefined' &&
typeof crypto !== 'undefined';
typeof crypto !== 'undefined' &&
typeof crypto.subtle !== 'undefined';
SystemJS.config({
packages: {

Loading…
Cancel
Save