Skip to content

Instantly share code, notes, and snippets.

@dieppon
Created June 17, 2014 14:14
Show Gist options
  • Save dieppon/e2c8a112072345657906 to your computer and use it in GitHub Desktop.
Save dieppon/e2c8a112072345657906 to your computer and use it in GitHub Desktop.
SASS even number validator
@function even($number) {
@return $number % 2 == 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment