This commit is contained in:
Diogo Franco 2016-11-11 01:43:21 +09:00 committed by GitHub
parent cbd827b9db
commit d407ddc00c

View File

@ -48,13 +48,13 @@ const isBrowsersQueryValid = (browsers) => {
}; };
const browserNameMap = { const browserNameMap = {
chrome: 'chrome', chrome: "chrome",
edge: 'edge', edge: "edge",
firefox: 'firefox', firefox: "firefox",
ie: 'ie', ie: "ie",
ios_saf: 'ios', ios_saf: "ios",
safari: 'safari' safari: "safari"
} };
const getLowestVersions = (browsers) => { const getLowestVersions = (browsers) => {
return browsers.reduce((all, browser) => { return browsers.reduce((all, browser) => {