Actions
Feature #3575
closedString#split is inconsistent with empty string and negative limit
Feature #3575:
String#split is inconsistent with empty string and negative limit
Description
Currently works like this:
"".split(",", -1) # => []
According to the documentation, blank fields should not be stripped when a negative offset is provided. I expect:
"".split(",", -1) # => [""]
Actions