Understanding Sass Units

Though it’s a trivial task, it might be handy for some to also have a strip-units function example.

e.g.

@function strip-unit($num) {
  @return $num / ($num * 0 + 1);
}