Skip to content

Commit ed9eeeb

Browse files
authored
Don't use ES6 in a file that should run on Node 4 (#1724)
1 parent 01c3597 commit ed9eeeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-dev-utils/openBrowser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function openBrowser(url) {
1717
// Attempt to honor this environment variable.
1818
// It is specific to the operating system.
1919
// See https://github.com/sindresorhus/opn#app for documentation.
20-
let browser = process.env.BROWSER;
20+
var browser = process.env.BROWSER;
2121

2222
// Special case: BROWSER="none" will prevent opening completely.
2323
if (browser === 'none') {

0 commit comments

Comments
 (0)