assertNumber method

SassNumber assertNumber(
  1. [String? name]
)

Throws a SassScriptException if this isn't a number.

If this came from a function argument, name is the argument name (without the $). It's used for error reporting.

Implementation

SassNumber assertNumber([String? name]) =>
    throw SassScriptException("$this is not a number.", name);