Skip to content

0.17.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@winterbe winterbe released this 18 Oct 12:40
· 27 commits to master since this release

This version changes range() to be a closed range (second parameter endExclusive becomes endInclusive) to be en par with Kotlin ranges.

This is a breaking change. If you already use the range() function you have to change your code like this:

import {range} from "sequency";

- range(start, end)
+ range(start, end - 1)