mojotech / sass2stylus

Kewl
http://sass2stylus.com/
79 stars 18 forks source link

breaking #51

Closed samccone closed 10 years ago

samccone commented 10 years ago
@function asin ($x) {
    @if $x > 1 or $x < -1 {
        @warn "Argument for `asin()` must be a number between -1 and 1";
        @return null;
    }
    @return atan($x / sqrt(1 - $x * $x));
}