Skip to content

Instantly share code, notes, and snippets.

@sboselli
Forked from ryanflorence/polyfills.js
Created January 27, 2016 13:27
Show Gist options
  • Save sboselli/a25303ea756d1f919a47 to your computer and use it in GitHub Desktop.
Save sboselli/a25303ea756d1f919a47 to your computer and use it in GitHub Desktop.
if (typeof Promise === 'undefined') {
require.ensure([], (require) => {
require('imports?this=>window!es6-promise')
})
}
if (typeof fetch === 'undefined') {
require.ensure([], (require) => {
require('imports?self=>window!whatwg-fetch')
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment