You are here

public function Number::value in SCSS Compiler 1.0.x

Get the magnitude of this number.

Return value

float The magnitude of this number.

File

src/Type/Number.php, line 64

Class

Number
Defines a Sass number type optionally paired with a unit.

Namespace

Drupal\compiler_scss\Type

Code

public function value() : float {
  return $this->value;
}