Skip to content

Instantly share code, notes, and snippets.

@KittyGiraudel
Created August 28, 2014 09:36
Show Gist options
  • Select an option

  • Save KittyGiraudel/539c6ec5f5e901dde132 to your computer and use it in GitHub Desktop.

Select an option

Save KittyGiraudel/539c6ec5f5e901dde132 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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");
}
test {
bullshit: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment