chore: remove excessive whitespace (#1375)

This commit is contained in:
Mehdi Raash 2017-12-04 07:03:28 +00:00 committed by Andrey Lushnikov
parent 5a6488883a
commit 90f799cc95

View File

@ -47,7 +47,7 @@ class Browser extends EventEmitter {
* @param {function()=} closeCallback
*/
static async create(connection, options, closeCallback) {
const browser = new Browser(connection, options, closeCallback);
const browser = new Browser(connection, options, closeCallback);
await connection.send('Target.setDiscoverTargets', {discover: true});
return browser;
}