Skip to content

Instantly share code, notes, and snippets.

@chris-muller
Last active October 19, 2015 11:47
Show Gist options
  • Save chris-muller/011854880ffc44c4beee to your computer and use it in GitHub Desktop.
Save chris-muller/011854880ffc44c4beee to your computer and use it in GitHub Desktop.
A Sass function that lets you detect if a value is a unitless integer.
@function isInt($value) {
@if round($value) == $value and unitless($value) {
@return true;
}
@return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment