Skip to content

Commit e217810

Browse files
committed
mythical commit message
1 parent 92274e3 commit e217810

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import tape from 'tape'
22
import * as combinators from './index.es6'
33

44
const {K, S} = combinators
5-
const [a, b, c, d, e] = Array.from({length: 5}, () => K(K(K(K(K(K(K)))))))
5+
const [a, b, c, d, e] = (function* () { while(true) yield K(K(K(K(K(K(K)))))) })()
66

77
const equal = x => y => t => (t.equal(x(a)(b)(c)(d)(e), y(a)(b)(c)(d)(e)), t.end())
88
const test = x => y => tape(x, equal(combinators[x])(y))

0 commit comments

Comments
 (0)