I'm working on SASS unit-conversion function, and i have defined two functions:
convert-units(...);
strip-units(...);
Both work perfectly fine separately, until i pipe one in another, like this:
strip-units( convert-units(...) );
the result is following error:
invalid operands for multiplication on line 68 at column 23
I tried to copy manually result from convert-units() into strip-units(), and it it works correctly.
Here is the working example:
http://sassmeister.com/gist/b5c61fc7baec1e3bec1f
Please scroll to the bottom until you find commented pipe: strip-units(...
fragment.
Any help would be appreciated.