From f99fffb1a25de29279bb5c88ba2b3de80021d91b Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Sun, 19 Jun 2016 16:35:52 +0100 Subject: [PATCH] Remove parenthesis around single arg arrow function --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 4a3ee7b..ddfff2f 100644 --- a/src/index.js +++ b/src/index.js @@ -1,6 +1,6 @@ import { jsdom } from 'jsdom'; -module.exports = (arg) => { +module.exports = arg => { const properties = arg instanceof Array ? arg : arg && arg.properties; const overwrite = arg && arg.overwrite; const window = jsdom('').defaultView;