From b9ea095c42c87517e50880fd18f51c5eb563ae7a Mon Sep 17 00:00:00 2001 From: nlepage <19571875+nlepage@users.noreply.github.com> Date: Thu, 7 Dec 2017 09:54:42 +0100 Subject: [PATCH] :rotating_light: fix lint after rebase --- packages/immutadot/src/seq/ChainWrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/immutadot/src/seq/ChainWrapper.js b/packages/immutadot/src/seq/ChainWrapper.js index 5a148dc4..f47cc72d 100644 --- a/packages/immutadot/src/seq/ChainWrapper.js +++ b/packages/immutadot/src/seq/ChainWrapper.js @@ -7,7 +7,7 @@ import * as string from 'string' import { unsafeToPath } from 'core/toPath' -const flow = (fns) => pObj => fns.reduce((obj, fn) => fn(obj), pObj) +const flow = fns => pObj => fns.reduce((obj, fn) => fn(obj), pObj) const omit = (obj, without) => without.reduce((obj, key) => { delete obj[key]