Skip to content

Add planning and multi-pass

Choose a tag to compare

@unional unional released this 24 Dec 18:48
· 360 commits to main since this release

Add planning support:

const a = new AssertOrder(3)
a.once(0)
a.once(1)
a.once(2)
a.end()

And multi-pass:

function odd() { a.any(1, 3, 5) }
function even() { a.any(0, 2, 4) }
const a = new AssertOrder()
even()
odd()
even()
odd()
even()
odd()