Created
August 28, 2014 09:36
-
-
Save KittyGiraudel/539c6ec5f5e901dde132 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.3.14) | |
| // Compass (v1.0.0) | |
| // ---- | |
| @function score($word) { | |
| $alphabet: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z; | |
| $score: 0; | |
| @for $i from 1 through str-length($word) { | |
| $character: to-upper-case(str-slice($word, $i, $i)); | |
| $index: index($alphabet, $character); | |
| @if $index { | |
| $score: $score + $index; | |
| } | |
| } | |
| @return if($score > 100, 100%, $score * 1%); | |
| } | |
| test { | |
| bullshit: score("bullshit"); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test { | |
| bullshit: 100%; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment