@use "sass:map";

$cx-call-once-data: () !default;

@function cx-call-once($name) {
   $result: map.get($cx-call-once-data, $name);
   $cx-call-once-data: map.merge($cx-call-once-data, ($name: true)) !global;
   @return $result != true;
}

@function cx-called-once($name) {
   @return map.get($cx-call-once-data, $name);
}