UNPKG

ember-fetch

Version:

HTML5 Fetch polyfill (as an ember-addon)

19 lines (14 loc) 305 B
'use strict'; const browsers = [ 'last 1 Chrome versions', 'last 1 Firefox versions', 'last 1 Safari versions' ]; const isCI = !!process.env.CI; const isProduction = process.env.EMBER_ENV === 'production'; if (isCI || isProduction) { browsers.push('ie 11'); } module.exports = { browsers };