NOTE:
There are only rare cases
where you might actually need this.
Read my
article for more details
.
Sass 3.5+ includes support for
first-class functions
.
In brief,
we have to start useing
get-function('function-name')
before calling a function using
call()
—
but only in newer versions of Sass.
safe-get-function($function)
Safe Get Function accepts either a string or a function,
and returns the proper value for the version of Sass being used.
safe-call($function, $args...)
Safe Call is a shortcut for getting (if needed)
and calling a function
all at once.