Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
util: Adds CRLF awareness to quote().
Input: ```scss @import url("a b"); ``` Output on Windows: ```css "@import url(\"a\r\a b\")"; ``` Output on Unix (alinged with Ruby Sass, hence the expected output): ```css "@import url(\"a\a b\")"; ``` See: sass#1096 (comment) for details.
- Loading branch information