github abs-lang/abs 2.7.1
v2.7.1

latest release: 2.7.2
2 months ago

A fresh new patch release of ABS: always be shipping! 🚢

Allow string.split() to split according to any whitespace

This may have been considered a breaking change as it changes existing behavior, but given the current behavior can be considered a bug, we opted to do a minor release.

From now on, split's default separator will match any unicode whitespace.

Before:

> "hello world".split()
["hello", "world"]
> "hello\tworld".split()
["hello	world"] 

After:

> "hello world".split()
["hello", "world"]
> "hello\tworld".split()
["hello", "world"]

Don't miss a new abs release

NewReleases is sending notifications on new releases.