SU-SWS/decanter

View on GitHub
core/src/scss/utilities/functions/type-checks/_is-integer.scss

Summary

Maintainability
Test Coverage

///
/// Validates wether something is an integer
///
/// @name is-integer($value)
///
/// @param {Integer} $value - the value to type check
///
/// @group mixin
@function is-integer($value) {
  @return is-number($value) and round($value) == $value;
}