17 lines
337 B
SCSS
17 lines
337 B
SCSS
@use "sass:math";
|
|
@use "sass:list";
|
|
|
|
@function random($min, $max){
|
|
@if ($min > $max){
|
|
@error "Invalid arguments"
|
|
}
|
|
|
|
@return math.random(($max - $min) + 1) + $min - 1;
|
|
}
|
|
|
|
@function choose($list){
|
|
@return list.nth($list, math.random(list.length($list)));
|
|
}
|
|
|
|
@debug random(-5, 5);
|
|
@debug choose(apple banana cherry); |