File "_deep-map.scss"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/elementor/app/assets/styles/functions/_deep-map.scss
File size: 314 bytes
MIME-type: text/plain
Charset: utf-8

// map deep get
@function map-deep-get($map, $keys...) {
    @each $key in $keys {
        @if map-has-key($map, $key) {
            $map: map-get($map, $key);
        } @else {
            @error "arguments are:#{$keys}, no key #{$key} found, did you mean #{map-keys($map)}?";
        }
    }
    @return $map;
}