Closed jeno5980515 closed 5 years ago
There is a problem when spread with string.
For example: [..."abcde"]
Buble will transform the format into [].concat("abcde"), so the result will be wrong. (["abcde"])
The result should be ["a", "b", "c", "d", "e"]
Closely related to #81.
Closing this in favor of #131.
There is a problem when spread with string.
For example: [..."abcde"]
Buble will transform the format into [].concat("abcde"), so the result will be wrong. (["abcde"])
The result should be ["a", "b", "c", "d", "e"]