Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
🚨 fix lint after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
nlepage committed Dec 7, 2017
1 parent 68d4380 commit b9ea095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/immutadot/src/seq/ChainWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit b9ea095

Please sign in to comment.