https://github.com/ajlkn/responsive-tools/blob/cc4937e5ba986b1bbd3d6cc36deaa472d100437b/src/_breakpoints.scss#L36 On the above line the call to str-slice uses 0 as the index argument, while the language specification explicitly says that index starts at 1: http://sass-lang.com/documentation/Sass/Script/Functions.html#str_slice-instance_method ``` Note that unlike some languages, the first character in a Sass string is number 1, the second number 2, and so forth. ``` All SASS/SCSS compilers I tried locally are refusing to work with this file complaining about the index.
responsive-tools/src/_breakpoints.scss
Line 36 in cc4937e
On the above line the call to str-slice uses 0 as the index argument, while the language specification explicitly says that index starts at 1: http://sass-lang.com/documentation/Sass/Script/Functions.html#str_slice-instance_method
All SASS/SCSS compilers I tried locally are refusing to work with this file complaining about the index.