Skip to content

Commit 709aefe

Browse files
committed
refactor: replace call() with meta.call() and get-function() with meta.get-function()
1 parent 02a4b41 commit 709aefe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scss/functions/_maps.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@use "sass:map";
2+
@use "sass:meta";
23
@use "../variables" as *;
34
@use "color" as *;
45

@@ -13,7 +14,7 @@
1314
$_args: append($_args, if($arg == "$prefix", $prefix, if($arg == "$key", $key, if($arg == "$value", $value, $arg))));
1415
}
1516

16-
$_map: map.merge($_map, ($key: call(get-function($func), $_args...)));
17+
$_map: map.merge($_map, ($key: meta.call(meta.get-function($func), $_args...)));
1718
}
1819
@return $_map;
1920
}

0 commit comments

Comments
 (0)