Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Split object and arguments only at unescaped spaces. - Keep commas instead of replacing them with spaces. The latter was an artifact of the toString().replace(/\,/g, " ") method for concatenating the arguments array, which causes trouble if any of the arguments contains commas. We now just use join(" ") instead which preserves the commas.
- Loading branch information