Skip to content

Commit

Permalink
feat(dictionary): add call() function to use as separate object.
Browse files Browse the repository at this point in the history
  • Loading branch information
sciborrudnicki committed Sep 11, 2023
1 parent 83835d9 commit a349181
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions translator/v1.0.0/dictionary/_dictionary.call.function.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Modules.
@use '../../../object/object.call.function';

// Status: DONE
// The `dictionary.call()` function.
// @param `$function`
// @arbitrary `$args...`
// @returns The returned value is the result of executed `$function`.
@function call($function, $args...) {
@return object.call(dictionary, $function, $args...);
}

0 comments on commit a349181

Please sign in to comment.