Skip to content

Instantly share code, notes, and snippets.

@davidgilbertson
Created December 24, 2016 01:07
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save davidgilbertson/6a66e05d6f193281a4c6b54d19acf3fd to your computer and use it in GitHub Desktop.
Save davidgilbertson/6a66e05d6f193281a4c6b54d19acf3fd to your computer and use it in GitHub Desktop.
var scripts = ['app.a700a9a3e91a84de5dc0.js']; // script for all users
var newBrowser = (
'fetch' in window &&
'Promise' in window &&
'assign' in Object &&
'keys' in Object
);
if (!newBrowser) {
scripts.unshift('polyfills.a700a9a3e91a84de5dc0.js'); // script for the less fortunate
}
scripts.forEach(function(src) {
var scriptEl = document.createElement('script');
scriptEl.src = src;
scriptEl.async = false;
document.head.appendChild(scriptEl);
});
@baskan
Copy link

baskan commented Dec 26, 2016

cool shit 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment