Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed May 18, 2019
1 parent 6d3ab69 commit 26a30c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/helpers/test_each/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ export const parseInput = function(inputArgs) {

const validateIterable = function(iterable) {
if (iterable[Symbol.iterator] === undefined && !isRepeat(iterable)) {
throw new TypeError(`Argument must be an iterable or a positive integer: ${iterable}`)
throw new TypeError(
`Argument must be an iterable or a positive integer: ${iterable}`,
)
}
}

Expand Down

0 comments on commit 26a30c6

Please sign in to comment.